Files
geant4/source/g3tog4/src/G3RotTable.cc
T
2016-06-08 15:34:16 +02:00

45 lines
1001 B
C++

// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G3RotTable.cc,v 1.11 1999/12/05 17:50:10 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
// by I.Hrivnacova, 27 Sep 99
#include "G3RotTable.hh"
G3RotTable::G3RotTable()
{
fRotVector = new G3RotMatrixVector();
}
G3RotTable::~G3RotTable()
{
fRotVector->clearAndDestroy();
delete fRotVector;
}
G4RotationMatrix* G3RotTable::Get(G4int id) const
{
for (G4int i=0; i<fRotVector->entries(); i++) {
G3RotTableEntry* rte = (*fRotVector)[i];
if (id == rte->GetID()) return rte->GetMatrix();
}
return 0;
}
void G3RotTable::Put(G4int id, G4RotationMatrix* matrix)
{
G3RotTableEntry* rte = new G3RotTableEntry(id, matrix);
fRotVector->insert(rte);
}
void G3RotTable::Clear()
{
fRotVector->clearAndDestroy();
}