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 // 27 // 28 28 29 // G4SDStructure 29 // G4SDStructure 30 #include "G4SDStructure.hh" 30 #include "G4SDStructure.hh" 31 << 32 #include "G4ios.hh" 31 #include "G4ios.hh" 33 32 34 G4SDStructure::G4SDStructure(const G4String& a << 33 G4SDStructure::G4SDStructure(const G4String &aPath):verboseLevel(0) 35 { 34 { 36 pathName = aPath; 35 pathName = aPath; 37 dirName = aPath; 36 dirName = aPath; 38 auto i = dirName.length(); << 37 G4int i = dirName.length(); 39 if (i > 1) { << 38 if( i > 1 ) 40 dirName.erase(i - 1); << 39 { 41 auto isl = dirName.rfind('/'); << 40 dirName.remove(i-1); 42 dirName.erase(0, isl + 1); << 41 G4int isl = dirName.last('/'); >> 42 dirName.remove(0,isl+1); 43 dirName += "/"; 43 dirName += "/"; 44 } 44 } 45 } 45 } 46 46 47 G4SDStructure::~G4SDStructure() 47 G4SDStructure::~G4SDStructure() 48 { 48 { 49 for (auto st : structure) << 49 for(auto st : structure) delete st; 50 delete st; << 51 structure.clear(); 50 structure.clear(); 52 for (auto dt : detector) << 51 for(auto dt : detector) delete dt; 53 delete dt; << 54 detector.clear(); 52 detector.clear(); 55 } 53 } 56 54 57 G4bool G4SDStructure::operator==(const G4SDStr << 55 G4bool G4SDStructure::operator==(const G4SDStructure &right) const >> 56 { >> 57 return (this==&right); >> 58 } 58 59 59 void G4SDStructure::AddNewDetector(G4VSensitiv << 60 void G4SDStructure::AddNewDetector(G4VSensitiveDetector*aSD, >> 61 const G4String &treeStructure) 60 { 62 { 61 G4String remainingPath = treeStructure; 63 G4String remainingPath = treeStructure; 62 remainingPath.erase(0, pathName.length()); << 64 remainingPath.remove(0,pathName.length()); 63 if (! remainingPath.empty()) { // The detec << 65 if( ! remainingPath.isNull() ) 64 // First, ch << 66 { // The detector should be kept in subdirectory. 65 G4String subD = ExtractDirName(remainingPa << 67 // First, check if the subdirectoy exists. >> 68 G4String subD = ExtractDirName( remainingPath ); 66 G4SDStructure* tgtSDS = FindSubDirectory(s 69 G4SDStructure* tgtSDS = FindSubDirectory(subD); 67 if (tgtSDS == nullptr) { // Subdirectory << 70 if( tgtSDS == nullptr ) 68 subD.insert(0, pathName); << 71 { // Subdirectory not found. Create a new directory. >> 72 subD.prepend(pathName); 69 tgtSDS = new G4SDStructure(subD); 73 tgtSDS = new G4SDStructure(subD); 70 structure.push_back(tgtSDS); << 74 structure.push_back( tgtSDS ); 71 } 75 } 72 tgtSDS->AddNewDetector(aSD, treeStructure) << 76 tgtSDS->AddNewDetector(aSD,treeStructure); 73 } 77 } 74 else { // The sensitive detector should be << 78 else 75 G4VSensitiveDetector* tgtSD = GetSD(aSD->G << 79 { // The sensitive detector should be kept in this directory. 76 if (tgtSD == nullptr) { << 80 G4VSensitiveDetector* tgtSD = GetSD( aSD->GetName() ); 77 detector.push_back(aSD); << 81 if(!tgtSD) 78 } << 82 { detector.push_back( aSD ); } 79 else if (tgtSD != aSD) { << 83 else if( tgtSD != aSD ) >> 84 { 80 #ifdef G4VERBOSE 85 #ifdef G4VERBOSE 81 G4ExceptionDescription ed; 86 G4ExceptionDescription ed; 82 ed << aSD->GetName() << " had already be << 87 ed << aSD->GetName() << " had already been stored in " 83 << ". Object pointer is overwritten.\ << 88 << pathName << ". Object pointer is overwitten.\n"; 84 ed << "It's users' responsibility to del << 89 ed << "It's users' responsibility to delete the old sensitive detector object."; 85 "object."; << 90 G4Exception("G4SDStructure::AddNewDetector()","DET1010",JustWarning,ed); 86 G4Exception("G4SDStructure::AddNewDetect << 87 #endif 91 #endif 88 RemoveSD(tgtSD); << 92 RemoveSD( tgtSD ); 89 detector.push_back(aSD); << 93 detector.push_back( aSD ); 90 } 94 } 91 } 95 } 92 } 96 } 93 97 94 G4SDStructure* G4SDStructure::FindSubDirectory << 98 G4SDStructure* G4SDStructure::FindSubDirectory(const G4String &subD) 95 { 99 { 96 for (auto st : structure) { << 100 for(auto st : structure) 97 if (subD == st->dirName) return st; << 101 { if( subD == st->dirName ) return st; } 98 } << 99 return nullptr; 102 return nullptr; 100 } 103 } 101 104 102 G4VSensitiveDetector* G4SDStructure::GetSD(con << 105 G4VSensitiveDetector* G4SDStructure::GetSD(const G4String &aSDName) 103 { 106 { 104 for (auto det : detector) { << 107 for(auto det : detector) 105 if (aSDName == det->GetName()) return det; << 108 { if(aSDName == det->GetName()) return det; } 106 } << 107 return nullptr; 109 return nullptr; 108 } 110 } 109 111 110 void G4SDStructure::RemoveSD(G4VSensitiveDetec 112 void G4SDStructure::RemoveSD(G4VSensitiveDetector* sd) 111 { 113 { 112 auto det = std::find(detector.begin(), detec 114 auto det = std::find(detector.begin(), detector.end(), sd); 113 if (det != detector.end()) detector.erase(de << 115 if(det!=detector.end()) detector.erase(det); 114 } 116 } 115 117 116 G4String G4SDStructure::ExtractDirName(const G << 118 G4String G4SDStructure::ExtractDirName(const G4String &aName) 117 { 119 { 118 G4String subD = aName; 120 G4String subD = aName; 119 auto i = aName.find('/'); << 121 G4int i = aName.first('/'); 120 if (i != G4String::npos) subD.erase(i + 1); << 122 if( i != G4int(std::string::npos) ) subD.remove(i+1); 121 return subD; 123 return subD; 122 } 124 } 123 125 124 void G4SDStructure::Activate(const G4String& a << 126 void G4SDStructure::Activate(const G4String &aName, G4bool sensitiveFlag) 125 { 127 { 126 G4String aPath = aName; 128 G4String aPath = aName; 127 aPath.erase(0, pathName.length()); << 129 aPath.remove(0,pathName.length()); 128 if (aPath.find('/') != std::string::npos) { << 130 if( aPath.first('/') != std::string::npos ) >> 131 { // Command is ordered for a subdirectory. 129 G4String subD = ExtractDirName(aPath); 132 G4String subD = ExtractDirName(aPath); 130 G4SDStructure* tgtSDS = FindSubDirectory(s 133 G4SDStructure* tgtSDS = FindSubDirectory(subD); 131 if (tgtSDS == nullptr) { // The subdirect << 134 if( tgtSDS == nullptr ) >> 135 { // The subdirectory is not found 132 G4cout << subD << " is not found in " << 136 G4cout << subD << " is not found in " << pathName << G4endl; 133 } 137 } 134 else { << 138 else 135 tgtSDS->Activate(aName, sensitiveFlag); << 139 { >> 140 tgtSDS->Activate(aName,sensitiveFlag); 136 } 141 } 137 } 142 } 138 else if (aPath.empty()) { // Command is ord << 143 else if( aPath.isNull() ) 139 for (auto det : detector) << 144 { // Command is ordered for all detectors in this directory. 140 det->Activate(sensitiveFlag); << 145 for(auto det : detector) det->Activate(sensitiveFlag); 141 for (auto st : structure) << 146 for(auto st : structure) st->Activate(G4String("/"),sensitiveFlag); 142 st->Activate(G4String("/"), sensitiveFla << 143 } 147 } 144 else { // Command is ordered to a particula << 148 else >> 149 { // Command is ordered to a particular detector. 145 G4VSensitiveDetector* tgtSD = GetSD(aPath) 150 G4VSensitiveDetector* tgtSD = GetSD(aPath); 146 if (tgtSD == nullptr) { // The detector i << 151 if( tgtSD == nullptr ) >> 152 { // The detector is not found. 147 G4cout << aPath << " is not found in " < 153 G4cout << aPath << " is not found in " << pathName << G4endl; 148 } 154 } 149 else { << 155 else >> 156 { 150 tgtSD->Activate(sensitiveFlag); 157 tgtSD->Activate(sensitiveFlag); 151 } 158 } 152 } 159 } 153 } 160 } 154 161 155 G4VSensitiveDetector* G4SDStructure::FindSensi << 162 G4VSensitiveDetector* G4SDStructure::FindSensitiveDetector(const G4String &aName, G4bool warning) 156 { 163 { 157 G4String aPath = aName; 164 G4String aPath = aName; 158 aPath.erase(0, pathName.length()); << 165 aPath.remove(0,pathName.length()); 159 if (aPath.find('/') != std::string::npos) { << 166 if( aPath.first('/') != std::string::npos ) >> 167 { // SD exists in sub-directory 160 G4String subD = ExtractDirName(aPath); 168 G4String subD = ExtractDirName(aPath); 161 G4SDStructure* tgtSDS = FindSubDirectory(s 169 G4SDStructure* tgtSDS = FindSubDirectory(subD); 162 if (tgtSDS == nullptr) { // The subdirect << 170 if( tgtSDS == nullptr ) 163 if (warning) G4cout << subD << " is not << 171 { // The subdirectory is not found >> 172 if (warning) >> 173 G4cout << subD << " is not found in " << pathName << G4endl; 164 return nullptr; 174 return nullptr; 165 } 175 } 166 << 176 else 167 return tgtSDS->FindSensitiveDetector(aName << 177 { >> 178 return tgtSDS->FindSensitiveDetector(aName,warning); >> 179 } 168 } 180 } 169 << 181 else 170 // SD must exist in this directory << 182 { // SD must exist in this directory 171 G4VSensitiveDetector* tgtSD = GetSD(aPath); << 183 G4VSensitiveDetector* tgtSD = GetSD(aPath); 172 if (tgtSD == nullptr) { // The detector is << 184 if( tgtSD == nullptr ) 173 if (warning) G4cout << aPath << " is not f << 185 { // The detector is not found. >> 186 if (warning) >> 187 G4cout << aPath << " is not found in " << pathName << G4endl; >> 188 } >> 189 return tgtSD; 174 } 190 } 175 return tgtSD; << 176 } 191 } 177 192 178 void G4SDStructure::Initialize(G4HCofThisEvent << 193 void G4SDStructure::Initialize(G4HCofThisEvent*HCE) 179 { 194 { 180 // Broadcast to subdirectories. 195 // Broadcast to subdirectories. 181 for (auto st : structure) { << 196 for(auto st : structure) 182 st->Initialize(HCE); << 197 { st->Initialize(HCE); } 183 } << 184 // Initialize all detectors in this director 198 // Initialize all detectors in this directory. 185 for (auto dt : detector) { << 199 for(auto dt : detector) 186 if (dt->isActive()) dt->Initialize(HCE); << 200 { if(dt->isActive()) dt->Initialize(HCE); } 187 } << 188 } 201 } 189 202 190 void G4SDStructure::Terminate(G4HCofThisEvent* << 203 void G4SDStructure::Terminate(G4HCofThisEvent*HCE) 191 { 204 { 192 // Broadcast to subdirectories. 205 // Broadcast to subdirectories. 193 for (auto st : structure) { << 206 for(auto st : structure) 194 st->Terminate(HCE); << 207 { st->Terminate(HCE); } 195 } << 196 // Terminate all detectors in this directory 208 // Terminate all detectors in this directory. 197 for (auto dt : detector) { << 209 for(auto dt : detector) 198 if (dt->isActive()) dt->EndOfEvent(HCE); << 210 { if(dt->isActive()) dt->EndOfEvent(HCE); } 199 } << 200 } 211 } 201 212 202 void G4SDStructure::ListTree() 213 void G4SDStructure::ListTree() 203 { 214 { 204 G4cout << pathName << G4endl; 215 G4cout << pathName << G4endl; 205 for (auto sd : detector) { << 216 for(auto sd : detector) >> 217 { 206 G4cout << pathName << sd->GetName(); 218 G4cout << pathName << sd->GetName(); 207 if (sd->isActive()) { << 219 if( sd->isActive() ) 208 G4cout << " *** Active "; << 220 { G4cout << " *** Active "; } 209 } << 221 else 210 else { << 222 { G4cout << " XXX Inactive "; } 211 G4cout << " XXX Inactive "; << 212 } << 213 G4cout << G4endl; 223 G4cout << G4endl; 214 } 224 } 215 for (auto st : structure) << 225 for(auto st : structure) st->ListTree(); 216 st->ListTree(); << 217 } 226 } >> 227 >> 228 218 229