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 // $Id: DicomRun.cc 105190 2017-07-14 12:08:43Z gcosmo $ 26 // 27 // 27 /// \file medical/DICOM/src/DicomRun.cc 28 /// \file medical/DICOM/src/DicomRun.cc 28 /// \brief Implementation of the DicomRun clas 29 /// \brief Implementation of the DicomRun class 29 30 30 //============================================ 31 //===================================================================== 31 /// 32 /// 32 /// (Description) 33 /// (Description) 33 /// DicomRun Class is for accumulating scor << 34 /// DicomRun Class is for accumulating scored quantities which is 34 /// scored using G4MutiFunctionalDetector and 35 /// scored using G4MutiFunctionalDetector and G4VPrimitiveScorer. 35 /// Accumulation is done using G4THitsMap obj 36 /// Accumulation is done using G4THitsMap object. 36 /// 37 /// 37 /// The constructor DicomRun(const std::vec 38 /// The constructor DicomRun(const std::vector<G4String> mfdName) 38 /// needs a vector filled with MultiFunctiona 39 /// needs a vector filled with MultiFunctionalDetector names which 39 /// was assigned at instantiation of MultiFun 40 /// was assigned at instantiation of MultiFunctionalDetector(MFD). 40 /// Then DicomRun constructor automatically s 41 /// Then DicomRun constructor automatically scans primitive scorers 41 /// in the MFD, and obtains collectionIDs of 42 /// in the MFD, and obtains collectionIDs of all collections associated 42 /// to those primitive scorers. Futhermore, t << 43 /// to those primitive scorers. Futhermore, the G4THitsMap objects 43 /// for accumulating during a RUN are automat 44 /// for accumulating during a RUN are automatically created too. 44 /// (*) Collection Name is same as primitive 45 /// (*) Collection Name is same as primitive scorer name. 45 /// << 46 /// 46 /// The resultant information is kept insid 47 /// The resultant information is kept inside DicomRun objects as 47 /// data members. 48 /// data members. 48 /// std::vector<G4String> fCollName; 49 /// std::vector<G4String> fCollName; // Collection Name, 49 /// std::vector<G4int> fCollID; 50 /// std::vector<G4int> fCollID; // Collection ID, 50 /// std::vector<G4THitsMap<G4double>*> fRunMa 51 /// std::vector<G4THitsMap<G4double>*> fRunMap; // HitsMap for RUN. 51 /// 52 /// 52 /// The resualtant HitsMap objects are obtain 53 /// The resualtant HitsMap objects are obtain using access method, 53 /// GetHitsMap(..). 54 /// GetHitsMap(..). 54 /// 55 /// 55 //============================================ 56 //===================================================================== 56 57 57 #include "DicomRun.hh" 58 #include "DicomRun.hh" >> 59 #include "G4SDManager.hh" 58 60 59 #include "G4MultiFunctionalDetector.hh" 61 #include "G4MultiFunctionalDetector.hh" 60 #include "G4SDManager.hh" << 61 #include "G4VPrimitiveScorer.hh" 62 #include "G4VPrimitiveScorer.hh" 62 63 63 //....oooOO0OOooo........oooOO0OOooo........oo 64 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 // 65 // 65 // Constructor. << 66 // Constructor. 66 DicomRun::DicomRun() : G4Run() {} << 67 DicomRun::DicomRun() >> 68 : G4Run() >> 69 { } 67 70 68 //....oooOO0OOooo........oooOO0OOooo........oo 71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 69 // 72 // 70 // Constructor. 73 // Constructor. 71 // (The vector of MultiFunctionalDetector na 74 // (The vector of MultiFunctionalDetector name has to given.) 72 DicomRun::DicomRun(const std::vector<G4String> << 75 DicomRun::DicomRun(const std::vector<G4String> mfdName): G4Run() 73 { 76 { 74 ConstructMFD(mfdName); << 77 ConstructMFD(mfdName); 75 } 78 } 76 79 77 //....oooOO0OOooo........oooOO0OOooo........oo 80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 // 81 // 79 // Destructor 82 // Destructor 80 // clear all data members. 83 // clear all data members. 81 DicomRun::~DicomRun() 84 DicomRun::~DicomRun() 82 { 85 { 83 //--- Clear HitsMap for RUN 86 //--- Clear HitsMap for RUN 84 size_t Nmap = fRunMap.size(); << 87 G4int Nmap = fRunMap.size(); 85 for (size_t i = 0; i < Nmap; ++i) { << 88 for ( G4int i = 0; i < Nmap; i++){ 86 if (fRunMap[i]) fRunMap[i]->clear(); << 89 if(fRunMap[i] ) fRunMap[i]->clear(); 87 } 90 } 88 fCollName.clear(); 91 fCollName.clear(); 89 fCollID.clear(); 92 fCollID.clear(); 90 fRunMap.clear(); 93 fRunMap.clear(); 91 } 94 } 92 95 93 //....oooOO0OOooo........oooOO0OOooo........oo 96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 94 // 97 // 95 // Destructor 98 // Destructor 96 // clear all data members. 99 // clear all data members. 97 void DicomRun::ConstructMFD(const std::vector< 100 void DicomRun::ConstructMFD(const std::vector<G4String>& mfdName) 98 { 101 { >> 102 99 G4SDManager* SDman = G4SDManager::GetSDMpoin 103 G4SDManager* SDman = G4SDManager::GetSDMpointer(); 100 //========================================== 104 //================================================= 101 // Initalize RunMaps for accumulation. 105 // Initalize RunMaps for accumulation. 102 // Get CollectionIDs for HitCollections. 106 // Get CollectionIDs for HitCollections. 103 //========================================== 107 //================================================= 104 size_t Nmfd = mfdName.size(); << 108 G4int Nmfd = mfdName.size(); 105 for (size_t idet = 0; idet < Nmfd; ++idet) << 109 for ( G4int idet = 0; idet < Nmfd ; idet++){ // Loop for all MFD. 106 { << 107 G4String detName = mfdName[idet]; 110 G4String detName = mfdName[idet]; 108 //--- Seek and Obtain MFD objects from SDm 111 //--- Seek and Obtain MFD objects from SDmanager. 109 G4MultiFunctionalDetector* mfd = 112 G4MultiFunctionalDetector* mfd = 110 (G4MultiFunctionalDetector*)(SDman->Find 113 (G4MultiFunctionalDetector*)(SDman->FindSensitiveDetector(detName)); 111 // 114 // 112 if (mfd) { << 115 if ( mfd ){ 113 //--- Loop over the registered primitive 116 //--- Loop over the registered primitive scorers. 114 for (G4int icol = 0; icol < mfd->GetNumb << 117 for (G4int icol = 0; icol < mfd->GetNumberOfPrimitives(); icol++){ 115 // Get Primitive Scorer object. 118 // Get Primitive Scorer object. 116 G4VPrimitiveScorer* scorer = mfd->GetP 119 G4VPrimitiveScorer* scorer = mfd->GetPrimitive(icol); 117 // collection name and collectionID fo 120 // collection name and collectionID for HitsCollection, 118 // where type of HitsCollection is G4T << 121 // where type of HitsCollection is G4THitsMap in case 119 // of primitive scorer. 122 // of primitive scorer. 120 // The collection name is given by <MF << 123 // The collection name is given by <MFD name>/<Primitive 121 // Scorer name>. 124 // Scorer name>. 122 G4String collectionName = scorer->GetN 125 G4String collectionName = scorer->GetName(); 123 G4String fullCollectionName = detName << 126 G4String fullCollectionName = detName+"/"+collectionName; 124 G4int collectionID = SDman->GetCollect << 127 G4int collectionID = SDman->GetCollectionID(fullCollectionName); 125 // 128 // 126 if (collectionID >= 0) { << 129 if ( collectionID >= 0 ){ 127 G4cout << "++ " << fullCollectionNam << 130 G4cout << "++ "<<fullCollectionName<< " id " << collectionID >> 131 << G4endl; 128 // Store obtained HitsCollection inf 132 // Store obtained HitsCollection information into data members. 129 // And, creates new G4THitsMap for a 133 // And, creates new G4THitsMap for accumulating quantities during RUN. 130 fCollName.push_back(fullCollectionNa 134 fCollName.push_back(fullCollectionName); 131 fCollID.push_back(collectionID); 135 fCollID.push_back(collectionID); 132 fRunMap.push_back(new G4THitsMap<G4d << 136 fRunMap.push_back(new G4THitsMap<G4double>(detName,collectionName)); 133 } << 137 } else { 134 else { << 138 G4cout << "** collection " << fullCollectionName << " not found. " 135 G4cout << "** collection " << fullCo << 139 <<G4endl; 136 } 140 } 137 } 141 } 138 } 142 } 139 } 143 } 140 } 144 } 141 145 142 //....oooOO0OOooo........oooOO0OOooo........oo 146 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 143 // 147 // 144 // RecordEvent is called at end of event. 148 // RecordEvent is called at end of event. 145 // For scoring purpose, the resultant quantit 149 // For scoring purpose, the resultant quantity in a event, 146 // is accumulated during a Run. 150 // is accumulated during a Run. 147 void DicomRun::RecordEvent(const G4Event* aEve 151 void DicomRun::RecordEvent(const G4Event* aEvent) 148 { 152 { 149 // disable below because this is done in G4R << 153 G4Run::RecordEvent(aEvent); 150 // numberOfEvent++; // This is an original << 154 151 << 155 //G4cout << "Dicom Run :: Recording event " << aEvent->GetEventID() 152 // G4cout << "Dicom Run :: Recording event " << 153 //<< "..." << G4endl; 156 //<< "..." << G4endl; 154 //============================= 157 //============================= 155 // HitsCollection of This Event << 158 // HitsCollection of This Event 156 //============================ 159 //============================ 157 G4HCofThisEvent* HCE = aEvent->GetHCofThisEv 160 G4HCofThisEvent* HCE = aEvent->GetHCofThisEvent(); 158 if (!HCE) return; 161 if (!HCE) return; 159 << 162 160 //========================================== 163 //======================================================= 161 // Sum up HitsMap of this Event into HitsMa 164 // Sum up HitsMap of this Event into HitsMap of this RUN 162 //========================================== 165 //======================================================= 163 size_t Ncol = fCollID.size(); << 166 G4int Ncol = fCollID.size(); 164 for (size_t i = 0; i < Ncol; ++i) // Loop o << 167 for ( G4int i = 0; i < Ncol ; i++ ){ // Loop over HitsCollection 165 { << 168 G4THitsMap<G4double>* EvtMap = 0; 166 G4THitsMap<G4double>* EvtMap = nullptr; << 169 if ( fCollID[i] >= 0 ){ // Collection is attached to HCE 167 if (fCollID[i] >= 0) // Collection is att << 168 { << 169 EvtMap = static_cast<G4THitsMap<G4double 170 EvtMap = static_cast<G4THitsMap<G4double>*>(HCE->GetHC(fCollID[i])); >> 171 }else{ >> 172 G4cout <<" Error EvtMap Not Found "<< i << G4endl; 170 } 173 } 171 else { << 174 if ( EvtMap ) { 172 G4cout << " Error EvtMap Not Found " << << 173 } << 174 if (EvtMap) { << 175 //=== Sum up HitsMap of this event to Hi 175 //=== Sum up HitsMap of this event to HitsMap of RUN.=== 176 *fRunMap[i] += *EvtMap; 176 *fRunMap[i] += *EvtMap; 177 // G4cout << "Summing EvtMap into RunMap << 177 //G4cout << "Summing EvtMap into RunMap at " << i << "..." << G4endl; 178 //====================================== 178 //====================================================== 179 } // else { << 179 } //else { 180 // G4cout << "Null pointer to EvtMap at " << 180 //G4cout << "Null pointer to EvtMap at " << i << "..." << G4endl; 181 // } << 181 //} 182 } 182 } 183 << 183 184 G4Run::RecordEvent(aEvent); << 185 } 184 } 186 185 187 //....oooOO0OOooo........oooOO0OOooo........oo 186 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 188 // Merge hits map from threads 187 // Merge hits map from threads 189 void DicomRun::Merge(const G4Run* aRun) 188 void DicomRun::Merge(const G4Run* aRun) 190 { 189 { 191 const DicomRun* localRun = static_cast<const 190 const DicomRun* localRun = static_cast<const DicomRun*>(aRun); 192 Copy(fCollName, localRun->fCollName); 191 Copy(fCollName, localRun->fCollName); 193 Copy(fCollID, localRun->fCollID); 192 Copy(fCollID, localRun->fCollID); 194 size_t ncopies = Copy(fRunMap, localRun->fRu << 193 unsigned ncopies = Copy(fRunMap, localRun->fRunMap); 195 // copy function returns the fRunMap size if 194 // copy function returns the fRunMap size if all data is copied 196 // so this loop isn't executed the first tim 195 // so this loop isn't executed the first time around 197 for (size_t i = ncopies; i < fRunMap.size(); << 196 G4cout << "DicomRun :: Num copies = " << ncopies << G4endl; >> 197 for(unsigned i = ncopies; i < fRunMap.size(); ++i) { 198 *fRunMap[i] += *localRun->fRunMap[i]; 198 *fRunMap[i] += *localRun->fRunMap[i]; 199 } 199 } 200 G4Run::Merge(aRun); 200 G4Run::Merge(aRun); 201 } 201 } 202 202 203 //....oooOO0OOooo........oooOO0OOooo........oo 203 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 204 //============================================ 204 //================================================================= 205 // Access method for HitsMap of the RUN 205 // Access method for HitsMap of the RUN 206 // 206 // 207 //----- 207 //----- 208 // Access HitsMap. 208 // Access HitsMap. 209 // By MultiFunctionalDetector name and Colle 209 // By MultiFunctionalDetector name and Collection Name. 210 G4THitsMap<G4double>* DicomRun::GetHitsMap(con << 210 G4THitsMap<G4double>* DicomRun::GetHitsMap(const G4String& detName, >> 211 const G4String& colName) const 211 { 212 { 212 G4String fullName = detName + "/" + colName; << 213 G4String fullName = detName+"/"+colName; 213 return GetHitsMap(fullName); 214 return GetHitsMap(fullName); 214 } 215 } 215 216 216 //....oooOO0OOooo........oooOO0OOooo........oo 217 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 217 // Access HitsMap. 218 // Access HitsMap. 218 // By full description of collection name, th 219 // By full description of collection name, that is 219 // <MultiFunctional Detector Name>/<Primiti 220 // <MultiFunctional Detector Name>/<Primitive Scorer Name> 220 G4THitsMap<G4double>* DicomRun::GetHitsMap(con 221 G4THitsMap<G4double>* DicomRun::GetHitsMap(const G4String& fullName) const 221 { 222 { 222 // G4THitsMap<G4double>* hitsmap = 0; << 223 223 << 224 //G4THitsMap<G4double>* hitsmap = 0; 224 size_t Ncol = fCollName.size(); << 225 225 for (size_t i = 0; i < Ncol; ++i) { << 226 G4int Ncol = fCollName.size(); 226 if (fCollName[i] == fullName) { << 227 for ( G4int i = 0; i < Ncol; i++){ >> 228 if ( fCollName[i] == fullName ){ 227 return fRunMap[i]; 229 return fRunMap[i]; 228 // if(hitsmap) { *hitsmap += *fRunMap[i] << 230 //if(hitsmap) { *hitsmap += *fRunMap[i]; } 229 // if(!hitsmap) { hitsmap = fRunMap[i]; << 231 //if(!hitsmap) { hitsmap = fRunMap[i]; } 230 } 232 } 231 } 233 } 232 << 234 >> 235 //if(hitsmap) { return hitsmap; } >> 236 233 G4Exception("DicomRun", fullName.c_str(), Ju 237 G4Exception("DicomRun", fullName.c_str(), JustWarning, 234 "GetHitsMap failed to locate the 238 "GetHitsMap failed to locate the requested HitsMap"); 235 return nullptr; << 239 return NULL; 236 } 240 } 237 241