source: trunk/source/g3tog4/src/G3RotTable.cc@ 1329

Last change on this file since 1329 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 2.6 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: G3RotTable.cc,v 1.16 2006/06/29 18:13:15 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30// by I.Hrivnacova, 27 Sep 99
31
32#include "G3RotTable.hh"
33
34G3RotTable::G3RotTable()
35{
36 fRotVector = new G3RotMatrixVector();
37}
38
39G3RotTable::~G3RotTable()
40{
41 fRotVector->clear();
42 delete fRotVector;
43}
44
45G4RotationMatrix* G3RotTable::Get(G4int id) const
46{
47 for (size_t i=0; i<fRotVector->size(); i++) {
48 G3RotTableEntry* rte = (*fRotVector)[i];
49 if (id == rte->GetID()) return rte->GetMatrix();
50 }
51 return 0;
52}
53
54void G3RotTable::Put(G4int id, G4RotationMatrix* matrix)
55{
56 G3RotTableEntry* rte = new G3RotTableEntry(id, matrix);
57 fRotVector->push_back(rte);
58}
59
60void G3RotTable::Clear()
61{
62 G3RotTableEntry* a;
63 while (fRotVector->size()>0) {
64 a = fRotVector->back();
65 fRotVector->pop_back();
66 for (G3RotMatrixVector::iterator i=fRotVector->begin();
67 i!=fRotVector->end(); i++){
68 if (*i==a) {
69 fRotVector->erase(i);
70 i--;
71 }
72 }
73 if ( a ) delete a;
74 }
75}
Note: See TracBrowser for help on using the repository browser.