Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 ////////////////////////////////////////////// 26 /////////////////////////////////////////////////////////////////////////////// 27 // File: CCalDetector.cc 27 // File: CCalDetector.cc 28 // Description: CCalDetector is a detector fac 28 // Description: CCalDetector is a detector factory class 29 ////////////////////////////////////////////// 29 /////////////////////////////////////////////////////////////////////////////// 30 30 31 #include "CCalDetector.hh" 31 #include "CCalDetector.hh" 32 32 33 #include <fstream> 33 #include <fstream> 34 #include "CCalGeometryConfiguration.hh" 34 #include "CCalGeometryConfiguration.hh" 35 #include "CCalutils.hh" 35 #include "CCalutils.hh" 36 36 37 //Comment/Uncomment to hide/show some debug in 37 //Comment/Uncomment to hide/show some debug information 38 //#define debug 38 //#define debug 39 //Comment/Uncomment to hide/show some more deb 39 //Comment/Uncomment to hide/show some more debug information 40 //#define ddebug 40 //#define ddebug 41 41 42 CCalDetector::CCalDetector(const G4String &nam << 42 G4String CCalDetector::pathName = getenv("CCAL_GEOMPATH"); 43 { << 43 44 if (std::getenv("CCAL_GEOMPATH")) << 44 CCalDetector::CCalDetector(const G4String &name): detectorName(name) { 45 pathName = std::getenv("CCAL_GEOMPATH"); << 45 #ifdef ddebug 46 else << 47 G4Exception("CCalDetector::CCalDetector"," << 48 FatalException, << 49 "Environment variable CCAL_GEO << 50 << 51 #ifdef debug << 52 G4cout << "CCAL_GEOMPATH=" << pathName << 46 G4cout << "CCAL_GEOMPATH=" << pathName << G4endl; 53 #endif 47 #endif 54 fileName = 48 fileName = 55 CCalGeometryConfiguration::getInstance() 49 CCalGeometryConfiguration::getInstance()->getFileName(name); 56 constructFlag = 50 constructFlag = 57 CCalGeometryConfiguration::getInstance() 51 CCalGeometryConfiguration::getInstance()->getConstructFlag(name); 58 } 52 } 59 53 60 CCalDetector::~CCalDetector() { 54 CCalDetector::~CCalDetector() { 61 for (auto ite=theDetectorsInside.begin(); it << 55 CCalDetectorTable::iterator ite; >> 56 for (ite=theDetectorsInside.begin(); ite !=theDetectorsInside.end(); ite++) { 62 delete *ite; 57 delete *ite; 63 } 58 } 64 theDetectorsInside.clear(); 59 theDetectorsInside.clear(); 65 } 60 } 66 61 67 void CCalDetector::construct() { 62 void CCalDetector::construct() { 68 #ifdef debug 63 #ifdef debug 69 G4cout << "===> Entering CCalDetector::const 64 G4cout << "===> Entering CCalDetector::construct() for " << Name() << G4endl; 70 #endif 65 #endif 71 G4int isgood = 0; << 66 int isgood = 0; 72 67 73 //If constructFlag is unset we don't go into 68 //If constructFlag is unset we don't go into all this bussines 74 if (constructFlag!=0) { 69 if (constructFlag!=0) { 75 70 76 if (!isgood) 71 if (!isgood) 77 isgood = buildFromFile(); 72 isgood = buildFromFile(); 78 73 79 if (isgood) { 74 if (isgood) { 80 constructDaughters(); 75 constructDaughters(); 81 for (std::size_t i=0; i < theDetectorsIn << 76 for (unsigned int i=0; i < theDetectorsInside.size(); i++) { 82 theDetectorsInside[i]->constructHierar << 77 theDetectorsInside[i]->constructHierarchy(); 83 } 78 } 84 } 79 } 85 } 80 } 86 #ifdef debug 81 #ifdef debug 87 G4cout << "===> Exiting CCalDetector::constr 82 G4cout << "===> Exiting CCalDetector::construct() for " << Name() << G4endl; 88 #endif 83 #endif 89 } 84 } 90 85 >> 86 91 void CCalDetector::addDetector(CCalDetector* d 87 void CCalDetector::addDetector(CCalDetector* det) { 92 theDetectorsInside.push_back(det); 88 theDetectorsInside.push_back(det); 93 } 89 } 94 90 >> 91 >> 92 95 //============================================ 93 //======================================================================== 96 //Protected and private methods. 94 //Protected and private methods. 97 G4int CCalDetector::buildFromFile() { << 95 int CCalDetector::buildFromFile() { 98 return readFile(); 96 return readFile(); 99 } 97 } 100 98 >> 99 >> 100 101 //============================================ 101 //======================================================================== 102 //Global operators 102 //Global operators 103 std::ostream& operator<<(std::ostream& os, con 103 std::ostream& operator<<(std::ostream& os, const CCalDetector& det) { 104 os << "Detector \"" << det.detectorName 104 os << "Detector \"" << det.detectorName 105 << "\" read from " << det.fileName << "." 105 << "\" read from " << det.fileName << "." << G4endl; 106 106 107 os << "With " << det.theDetectorsInside.size 107 os << "With " << det.theDetectorsInside.size() 108 << " detectors inside { "<< G4endl; 108 << " detectors inside { "<< G4endl; 109 109 110 for (std::size_t i=0; i<det.theDetectorsInsi << 110 for (unsigned int i=0; i<det.theDetectorsInside.size(); i++) 111 os << det.theDetectorsInside[i] << G4endl; 111 os << det.theDetectorsInside[i] << G4endl; 112 112 113 os << "}" << G4endl; 113 os << "}" << G4endl; 114 114 115 return os; 115 return os; 116 } 116 } >> 117 >> 118 >> 119 >> 120 >> 121 >> 122 >> 123 117 124