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