Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/persistency/ascii/src/G4tgrSolid.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  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 // G4tgrSolid implementation
 27 //
 28 // Author: P.Arce, CIEMAT (November 2007)
 29 // --------------------------------------------------------------------
 30 
 31 #include <map>
 32 #include <set>
 33 
 34 #include "G4tgrSolid.hh"
 35 
 36 #include "G4SystemOfUnits.hh"
 37 #include "G4tgrUtils.hh"
 38 #include "G4tgrMessenger.hh"
 39 #include "G4tgrVolumeMgr.hh"
 40 
 41 // --------------------------------------------------------------------
 42 G4tgrSolid::G4tgrSolid()
 43 {
 44 }
 45 
 46 // --------------------------------------------------------------------
 47 G4tgrSolid::~G4tgrSolid()
 48 {
 49 }
 50 
 51 // --------------------------------------------------------------------
 52 G4tgrSolid::G4tgrSolid(const std::vector<G4String>& wl)
 53 {
 54   //---------- set name
 55   theName = G4tgrUtils::GetString(wl[1]);
 56 
 57   //---------- set solid type
 58   theType = G4tgrUtils::GetString(wl[2]);
 59 
 60   //---------- create only vector<double> of theSolidParams
 61   FillSolidParams(wl);
 62 
 63   G4tgrVolumeMgr::GetInstance()->RegisterMe(this);
 64 
 65 #ifdef G4VERBOSE
 66   if(G4tgrMessenger::GetVerboseLevel() >= 1)
 67   {
 68     G4cout << " Created " << *this << G4endl;
 69   }
 70 #endif
 71 }
 72 
 73 // --------------------------------------------------------------------
 74 const std::vector<std::vector<G4double>*> G4tgrSolid::GetSolidParams() const
 75 {
 76   return theSolidParams;
 77 }
 78 
 79 // --------------------------------------------------------------------
 80 const G4String& G4tgrSolid::GetRelativeRotMatName() const
 81 {
 82   return theName;  // Dummy ...
 83 }
 84 
 85 // --------------------------------------------------------------------
 86 G4ThreeVector G4tgrSolid::GetRelativePlace() const
 87 {
 88   return G4ThreeVector(0, 0, 0);  // Dummy...
 89 }
 90 
 91 // --------------------------------------------------------------------
 92 void G4tgrSolid::FillSolidParams(const std::vector<G4String>& wl)
 93 {
 94   //---- Setting which are angle parameters (for dimensions...)
 95   std::map<G4String, std::set<G4int>> angleParams;
 96   std::set<G4int> apar;
 97   apar.clear();
 98   apar.insert(3);
 99   apar.insert(4);
100   angleParams["TUBS"] = apar;
101   apar.clear();
102   apar.insert(5);
103   apar.insert(6);
104   angleParams["CONS"] = apar;
105   apar.clear();
106   apar.insert(3);
107   apar.insert(4);
108   apar.insert(5);
109   angleParams["PARA"] = apar;
110   apar.clear();
111   apar.insert(1);
112   apar.insert(2);
113   apar.insert(6);
114   apar.insert(10);
115   angleParams["TRAP"] = apar;
116   apar.clear();
117   apar.insert(2);
118   apar.insert(3);
119   apar.insert(4);
120   apar.insert(5);
121   angleParams["SPHERE"] = apar;
122   apar.clear();
123   apar.insert(3);
124   apar.insert(4);
125   angleParams["TORUS"] = apar;
126   apar.clear();
127   apar.insert(0);
128   apar.insert(1);
129   angleParams["POLYCONE"] = apar;
130   apar.clear();
131   apar.insert(0);
132   apar.insert(1);
133   angleParams["POLYHEDRA"] = apar;
134   apar.clear();
135   apar.insert(2);
136   apar.insert(3);
137   angleParams["HYPE"] = apar;
138   apar.clear();
139   apar.insert(0);
140   angleParams["TWISTED_BOX"] = apar;
141   apar.clear();
142   apar.insert(0);
143   apar.insert(2);
144   apar.insert(3);
145   apar.insert(10);
146   angleParams["TWISTED_TRAP"] = apar;
147   apar.clear();
148   apar.insert(5);
149   angleParams["TWISTED_TRD"] = apar;
150   apar.clear();
151   apar.insert(0);
152   apar.insert(4);
153   angleParams["TWISTED_TUBS"] = std::move(apar);
154 
155   std::vector<G4double>* vd = new std::vector<G4double>;
156   theSolidParams.push_back(vd);
157   std::size_t noParRead = wl.size() - 3;
158 
159   G4String solidType = wl[2];
160   //--- Default unit (mm) if length, deg if angle
161   for(G4int ii = 0; ii < (G4int)noParRead; ++ii)
162   {
163     G4bool isAngle = 0;
164     std::map<G4String, std::set<G4int>>::const_iterator ite =
165       angleParams.find(solidType);
166     if(ite != angleParams.cend())
167     {
168       std::set<G4int> apar2 = (*ite).second;
169       if(apar2.find(ii) != apar2.cend())
170       {
171         isAngle = 1;
172         vd->push_back(G4tgrUtils::GetDouble(wl[3 + ii], deg));
173 #ifdef G4VERBOSE
174         if(G4tgrMessenger::GetVerboseLevel() >= 3)
175         {
176           G4cout << " G4tgrSolid::FillSolidParams() - Angle param found "
177                  << solidType << " " << ii << G4endl;
178         }
179 #endif
180       }
181     }
182     if(!isAngle)
183     {
184       vd->push_back(G4tgrUtils::GetDouble(wl[3 + ii]));
185     }
186   }
187 }
188 
189 // --------------------------------------------------------------------
190 std::ostream& operator<<(std::ostream& os, const G4tgrSolid& sol)
191 {
192   os << "G4tgrSolid= " << sol.theName << " of type " << sol.theType
193      << " PARAMS: ";
194   if(sol.theSolidParams.size() != 0)
195   {
196     std::vector<G4double> solpar = *(sol.theSolidParams[0]);
197     for(std::size_t ii = 0; ii < solpar.size(); ++ii)
198     {
199       os << solpar[ii] << " ";
200     }
201   }
202   os << G4endl;
203 
204   return os;
205 }
206