Geant4  10.00.p02
B4bRunData.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 // $Id: B4bRunData.cc 69223 2013-04-23 12:36:10Z gcosmo $
27 //
30 
31 #include "B4bRunData.hh"
32 #include "B4Analysis.hh"
33 
34 #include "G4RunManager.hh"
35 #include "G4UnitsTable.hh"
36 
37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
38 
40 {
41  fVolumeNames[0] = "Absorber";
42  fVolumeNames[1] = "Gap";
43 
44  for ( G4int i=0; i<kDim; i++) {
45  fEdep[i] = 0.;
46  fTrackLength[i] = 0.;
47  }
48 }
49 
50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51 
53 {;}
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
58 {
59  // get analysis manager
60  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
61  //accumulate statistic
62  //
63 
64  for ( G4int i=0; i<kDim; i++) {
65  // fill histograms
66  analysisManager->FillH1(i+1, fEdep[i]);
67  analysisManager->FillH1(kDim+i+1, fTrackLength[i]);
68 
69  // fill ntuple
70  analysisManager->FillNtupleDColumn(i, fEdep[i]);
71  analysisManager->FillNtupleDColumn(kDim+i, fTrackLength[i]);
72  }
73 
74  analysisManager->AddNtupleRow();
75 }
76 
77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78 
80 {
81  for ( G4int i=0; i<kDim; i++) {
82  fEdep[i] = 0.;
83  fTrackLength[i] = 0.;
84  }
85 }
86 
87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4double fEdep[kDim]
Definition: B4bRunData.hh:76
Definition of the B4bRunData class.
int G4int
Definition: G4Types.hh:78
void FillPerEvent()
Definition: B4bRunData.cc:57
Definition: G4Run.hh:46
ExG4HbookAnalysisManager G4AnalysisManager
Definition: g4hbook_defs.hh:46
virtual ~B4bRunData()
Definition: B4bRunData.cc:52
void Reset()
Definition: B4bRunData.cc:79
G4String fVolumeNames[kDim]
Definition: B4bRunData.hh:75
G4double fTrackLength[kDim]
Definition: B4bRunData.hh:77