source: trunk/source/persistency/ascii/src/G4tgrRotationMatrixFactory.cc@ 1257

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

update geant4.9.3 tag

File size: 4.7 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: G4tgrRotationMatrixFactory.cc,v 1.2 2008/12/18 13:00:08 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30//
31// class G4tgrRotationMatrixFactory
32
33// History:
34// - Created. P.Arce, CIEMAT (November 2007)
35// -------------------------------------------------------------------------
36
37#include "G4tgrRotationMatrixFactory.hh"
38#include "G4tgrMessenger.hh"
39#include "G4tgrUtils.hh"
40
41
42G4tgrRotationMatrixFactory * G4tgrRotationMatrixFactory::theInstance = 0;
43
44
45// -------------------------------------------------------------------------
46G4tgrRotationMatrixFactory* G4tgrRotationMatrixFactory::GetInstance()
47{
48 if( !theInstance )
49 {
50 theInstance = new G4tgrRotationMatrixFactory;
51 }
52 return theInstance;
53}
54
55
56// -------------------------------------------------------------------------
57G4tgrRotationMatrixFactory::G4tgrRotationMatrixFactory()
58{
59}
60
61
62// -------------------------------------------------------------------------
63G4tgrRotationMatrixFactory::~G4tgrRotationMatrixFactory()
64{
65 G4mstgrrotm::iterator cite;
66 for( cite = theTgrRotMats.begin(); cite != theTgrRotMats.end(); cite++)
67 {
68 delete (*cite).second;
69 }
70 theTgrRotMats.clear();
71 delete theInstance;
72}
73
74
75// -------------------------------------------------------------------------
76G4tgrRotationMatrix*
77G4tgrRotationMatrixFactory::AddRotMatrix( const std::vector<G4String>& wl )
78{
79 //---------- Check for miminum number of words read
80 if( wl.size() != 5 && wl.size() != 8 && wl.size() != 11 )
81 {
82 G4tgrUtils::DumpVS(wl, "G4tgrRotationMatrixFactory::AddRotMatrix()");
83 G4Exception("G4tgrRotationMatrixFactory::AddRotMatrix()", "InvalidMatrix",
84 FatalException, "Line should have 5, 8 or 11 words !");
85 }
86
87#ifdef G4VERBOSE
88 if( G4tgrMessenger::GetVerboseLevel() >= 2 )
89 {
90 G4cout << " G4tgrRotationMatrixFactory::AddRotMatrix() - Adding: "
91 << wl[1] << G4endl;
92 }
93#endif
94 //---------- Look if rotation matrix exists
95 if( FindRotMatrix( G4tgrUtils::GetString(wl[1]) ) != 0 )
96 {
97 G4String ErrMessage = "Rotation matrix repeated... " + wl[1];
98 G4Exception("G4tgrRotationMatrixFactory::AddRotMatrix()",
99 "InvalidInput", FatalException, ErrMessage);
100 }
101
102 G4tgrRotationMatrix* rotm = new G4tgrRotationMatrix( wl );
103 theTgrRotMats[ rotm->GetName() ] = rotm;
104 theTgrRotMatList.push_back( rotm );
105
106 return rotm;
107}
108
109
110// -------------------------------------------------------------------------
111G4tgrRotationMatrix*
112G4tgrRotationMatrixFactory::FindRotMatrix(const G4String& name)
113{
114 G4tgrRotationMatrix* rotm = 0;
115
116 G4mstgrrotm::const_iterator cite = theTgrRotMats.find( name );
117 if( cite != theTgrRotMats.end() )
118 {
119 rotm = (*cite).second;
120 }
121
122 return rotm;
123}
124
125
126// -------------------------------------------------------------------------
127void G4tgrRotationMatrixFactory::DumpRotmList()
128{
129 G4cout << " @@@@@@@@@@@@@@@@ DUMPING G4tgrRotationMatrix's List " << G4endl;
130 G4mstgrrotm::const_iterator cite;
131 for(cite = theTgrRotMats.begin(); cite != theTgrRotMats.end(); cite++)
132 {
133 G4cout << " ROTM: " << (*cite).second->GetName() << G4endl;
134 }
135}
Note: See TracBrowser for help on using the repository browser.