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: CCalSensitiveDetectors.cc 27 // File: CCalSensitiveDetectors.cc 28 // Description: Provides a map of logicalvolum 28 // Description: Provides a map of logicalvolume pointers which can be sensitive 29 ////////////////////////////////////////////// 29 /////////////////////////////////////////////////////////////////////////////// 30 30 31 #include "CCalSensitiveDetectors.hh" 31 #include "CCalSensitiveDetectors.hh" 32 32 33 //#define debug 33 //#define debug 34 34 35 G4ThreadLocal CCalSensitiveDetectors* CCalSens 35 G4ThreadLocal CCalSensitiveDetectors* CCalSensitiveDetectors::theInstance = nullptr; 36 36 37 37 38 CCalSensitiveDetectors* CCalSensitiveDetectors 38 CCalSensitiveDetectors* CCalSensitiveDetectors::getInstance() { 39 if ( theInstance == nullptr ) { 39 if ( theInstance == nullptr ) { 40 static G4ThreadLocalSingleton< CCalSensiti 40 static G4ThreadLocalSingleton< CCalSensitiveDetectors > inst; 41 theInstance = inst.Instance(); 41 theInstance = inst.Instance(); 42 } 42 } 43 return theInstance; 43 return theInstance; 44 } 44 } 45 45 46 46 47 void CCalSensitiveDetectors::registerVolume( c 47 void CCalSensitiveDetectors::registerVolume( const G4String& string, G4LogicalVolume* logv ) { 48 theLVs.insert(mmslv::value_type(string, logv 48 theLVs.insert(mmslv::value_type(string, logv)); 49 #ifdef debug 49 #ifdef debug 50 G4cout << "CCalSensitiveDetectors : Register 50 G4cout << "CCalSensitiveDetectors : Register " << logv->GetName() 51 << " in category " << string << G4endl; 51 << " in category " << string << G4endl; 52 #endif 52 #endif 53 } 53 } 54 54 55 55 56 std::vector<G4LogicalVolume*> 56 std::vector<G4LogicalVolume*> 57 CCalSensitiveDetectors::getVolumes( const G4St 57 CCalSensitiveDetectors::getVolumes( const G4String& string, G4bool exist ) { 58 mmslv::const_iterator mmscite; 58 mmslv::const_iterator mmscite; 59 std::pair<mmslv::iterator, mmslv::iterator> 59 std::pair<mmslv::iterator, mmslv::iterator> mmsdi; 60 mmsdi = theLVs.equal_range(string); 60 mmsdi = theLVs.equal_range(string); 61 std::vector<G4LogicalVolume*> lvs; 61 std::vector<G4LogicalVolume*> lvs; 62 for (mmscite = mmsdi.first; mmscite != mmsdi 62 for (mmscite = mmsdi.first; mmscite != mmsdi.second; mmscite++ ) { 63 lvs.push_back(const_cast<G4LogicalVolume*> 63 lvs.push_back(const_cast<G4LogicalVolume*>((*mmscite).second)); 64 } 64 } 65 if (exist) G4cout << "CCalSensitiveDetector 65 if (exist) G4cout << "CCalSensitiveDetector : " << lvs.size() 66 << " detectors for " << string << G4en 66 << " detectors for " << string << G4endl; 67 return lvs; 67 return lvs; 68 } 68 } 69 69 70 70 71 G4bool CCalSensitiveDetectors::setSensitive( c 71 G4bool CCalSensitiveDetectors::setSensitive( const G4String& string, G4VSensitiveDetector* sens ) { 72 G4bool result=false; 72 G4bool result=false; 73 mmslv::const_iterator mmscite; 73 mmslv::const_iterator mmscite; 74 std::pair<mmslv::iterator, mmslv::iterator> 74 std::pair<mmslv::iterator, mmslv::iterator> mmsdi; 75 mmsdi = theLVs.equal_range(string); 75 mmsdi = theLVs.equal_range(string); 76 for (mmscite = mmsdi.first; mmscite != mmsdi 76 for (mmscite = mmsdi.first; mmscite != mmsdi.second; mmscite++ ) { 77 G4LogicalVolume* lv = const_cast<G4Logical 77 G4LogicalVolume* lv = const_cast<G4LogicalVolume*>((*mmscite).second); 78 lv ->SetSensitiveDetector(sens); 78 lv ->SetSensitiveDetector(sens); 79 result = true; 79 result = true; 80 #ifdef debug 80 #ifdef debug 81 G4cout << " Associate SD " << sens->GetNam 81 G4cout << " Associate SD " << sens->GetName() << " to " << lv->GetName() << G4endl; 82 #endif 82 #endif 83 } 83 } 84 return result; 84 return result; 85 } 85 } 86 86