Loading...
Searching...
No Matches
B01Run.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26/// \file biasing/B01/src/B01Run.cc
27/// \brief Implementation of the B01Run class
28//
29//
30//
31
32//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33//
34// (Description)
35// B01Run Class is for accumulating scored quantities which is
36// scored using G4MutiFunctionalDetector and G4VPrimitiveScorer.
37// Accumulation is done using G4THitsMap object.
38//
39// The constructor B01Run(const std::vector<G4String> mfdName)
40// needs a vector filled with MultiFunctionalDetector names which
41// was assigned at instantiation of MultiFunctionalDetector(MFD).
42// Then B01Run constructor automatically scans primitive scorers
43// in the MFD, and obtains collectionIDs of all collections associated
44// to those primitive scorers. Futhermore, the G4THitsMap objects
45// for accumulating during a RUN are automatically created too.
46// (*) Collection Name is same as primitive scorer name.
47//
48// The resultant information is kept inside B01Run objects as
49// data members.
50// std::vector<G4String> fCollName; // Collection Name,
51// std::vector<G4int> fCollID; // Collection ID,
52// std::vector<G4THitsMap<G4double>*> fRunMap; // HitsMap for RUN.
53//
54// The resualtant HitsMap objects are obtain using access method,
55// GetHitsMap(..).
56//
57//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58
59#include "B01Run.hh"
60#include "G4SDManager.hh"
61
62#include "G4MultiFunctionalDetector.hh"
63#include "G4VPrimitiveScorer.hh"
64
65//
66//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67// Constructor.
68// (The vector of MultiFunctionalDetector name has to given.)
69B01Run::B01Run(const std::vector<G4String> mfdName): G4Run()
70{
71 G4SDManager* SDman = G4SDManager::GetSDMpointer();
72 //=================================================
73 // Initalize RunMaps for accumulation.
74 // Get CollectionIDs for HitCollections.
75 //=================================================
76 G4int Nmfd = mfdName.size();
77 for ( G4int idet = 0; idet < Nmfd ; idet++){ // Loop for all MFD.
78 G4String detName = mfdName[idet];
79 //--- Seek and Obtain MFD objects from SDmanager.
81 (G4MultiFunctionalDetector*)(SDman->FindSensitiveDetector(detName));
82 //
83 if ( mfd ){
84 //--- Loop over the registered primitive scorers.
85 for (G4int icol = 0; icol < mfd->GetNumberOfPrimitives(); icol++){
86 // Get Primitive Scorer object.
87 G4VPrimitiveScorer* scorer=mfd->GetPrimitive(icol);
88 // collection name and collectionID for HitsCollection,
89 // where type of HitsCollection is G4THitsMap in case of primitive scorer.
90 // The collection name is given by <MFD name>/<Primitive Scorer name>.
91 G4String collectionName = scorer->GetName();
92 G4String fullCollectionName = detName+"/"+collectionName;
93 G4int collectionID = SDman->GetCollectionID(fullCollectionName);
94
95 if ( collectionID >= 0 ){
96 G4cout << "++ "<<fullCollectionName<< " id " << collectionID
97 << G4endl;
98 // Store obtained HitsCollection information into data members.
99 // And, creates new G4THitsMap for accumulating quantities during RUN.
100 fCollName.push_back(fullCollectionName);
101 fCollID.push_back(collectionID);
102 fRunMap.push_back(new G4THitsMap<G4double>(detName
103 ,collectionName));
104 }else{
105 G4cout << "** collection " << fullCollectionName
106 << " not found. "<<G4endl;
107 }
108 }
109 }
110 }
111}
112
113//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
114
115// Destructor
116// clear all data members.
118{
119 //--- Clear HitsMap for RUN
120 G4int Nmap = fRunMap.size();
121 for ( G4int i = 0; i < Nmap; i++){
122 if(fRunMap[i] ) fRunMap[i]->clear();
123 }
124 fCollName.clear();
125 fCollID.clear();
126 fRunMap.clear();
127}
128
129//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
130
131// RecordEvent is called at end of event.
132// For scoring purpose, the resultant quantity in a event,
133// is accumulated during a Run.
134void B01Run::RecordEvent(const G4Event* aEvent)
135{
136 numberOfEvent++; // This is an original line.
137
138 //=============================
139 // HitsCollection of This Event
140 //============================
141 G4HCofThisEvent* HCE = aEvent->GetHCofThisEvent();
142 if (!HCE) return;
143
144 //=======================================================
145 // Sum up HitsMap of this Event into HitsMap of this RUN
146 //=======================================================
147 G4int Ncol = fCollID.size();
148 for ( G4int i = 0; i < Ncol ; i++ ){ // Loop over HitsCollection
149 G4THitsMap<G4double>* EvtMap=0;
150 if ( fCollID[i] >= 0 ){ // Collection is attached to HCE
151 EvtMap = (G4THitsMap<G4double>*)(HCE->GetHC(fCollID[i]));
152 }else{
153 G4cout <<" Error EvtMap Not Found "<< i << G4endl;
154 }
155 if ( EvtMap ) {
156 //=== Sum up HitsMap of this event to HitsMap of RUN.===
157 *fRunMap[i] += *EvtMap;
158 //======================================================
159 }
160 }
161
162
163}
164
165//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
166//
167// Access method for HitsMap of the RUN
168//
169//-----
170// Access HitsMap.
171// By MultiFunctionalDetector name and Collection Name.
173 const G4String& colName){
174 G4String fullName = detName+"/"+colName;
175 return GetHitsMap(fullName);
176}
177
178//-----
179// Access HitsMap.
180// By full description of collection name, that is
181// <MultiFunctional Detector Name>/<Primitive Scorer Name>
183 G4int Ncol = fCollName.size();
184 for ( G4int i = 0; i < Ncol; i++){
185 if ( fCollName[i] == fullName ){
186 return fRunMap[i];
187 }
188 }
189 return NULL;
190}
191
192//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
193
194// - Dump All HitsMap of this RUN. (for debuging and monitoring of quantity).
195// This method calls G4THisMap::PrintAll() for individual HitsMap.
197
198 // - Number of HitsMap in this RUN.
199 G4int n = GetNumberOfHitsMap();
200 // - GetHitsMap and dump values.
201 for ( G4int i = 0; i < n ; i++ ){
203 if ( RunMap ) {
204 G4cout << " PrimitiveScorer RUN "
205 << RunMap->GetSDname() <<","<< RunMap->GetName() << G4endl;
206 G4cout << " Number of entries " << RunMap->entries() << G4endl;
207 std::map<G4int,G4double*>::iterator itr = RunMap->GetMap()->begin();
208 for(; itr != RunMap->GetMap()->end(); itr++) {
209 G4cout << " copy no.: " << itr->first
210 << " Run Value : " << *(itr->second)
211 << G4endl;
212 }
213 }
214 }
215}
216
217//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
218
219void B01Run::Merge(const G4Run* aRun)
220{
221 const B01Run * localRun = static_cast<const B01Run *>(aRun);
222 //=======================================================
223 // Merge HitsMap of working threads
224 //=======================================================
225 G4int nCol = localRun->fCollID.size();
226 for ( G4int i = 0; i < nCol ; i++ ){ // Loop over HitsCollection
227 if ( localRun->fCollID[i] >= 0 ){
228 *fRunMap[i] += *localRun->fRunMap[i];
229 }
230 }
231
232 G4Run::Merge(aRun);
233}
234
235//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
236
Definition of the B01Run class.
virtual void RecordEvent(const G4Event *)
Definition B01Run.cc:134
virtual ~B01Run()
Definition B01Run.cc:117
B01Run(const std::vector< G4String > mfdName)
Definition B01Run.cc:69
std::vector< G4int > fCollID
Definition B01Run.hh:81
std::vector< G4THitsMap< G4double > * > fRunMap
Definition B01Run.hh:82
virtual void Merge(const G4Run *)
Definition B01Run.cc:219
G4int GetNumberOfHitsMap() const
Definition B01Run.hh:65
void DumpAllScorer()
Definition B01Run.cc:196
std::vector< G4String > fCollName
Definition B01Run.hh:80
G4THitsMap< G4double > * GetHitsMap(G4int i)
Definition B01Run.hh:69

Applications | User Support | Publications | Collaboration