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