Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/analysis/AnaEx01/src/HistoManager.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  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 analysis/AnaEx01/src/HistoManager.cc
 27 /// \brief Implementation of the HistoManager class
 28 //
 29 //
 30 //
 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 33 
 34 #include "HistoManager.hh"
 35 
 36 #include "G4SystemOfUnits.hh"
 37 #include "G4UnitsTable.hh"
 38 
 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 40 
 41 HistoManager::HistoManager()
 42 {
 43   // Create or get analysis manager
 44   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
 45   analysisManager->SetDefaultFileType("root");
 46   // the default file type can be overriden in run macro
 47 }
 48 
 49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 50 
 51 void HistoManager::Book()
 52 {
 53   // Create or get analysis manager
 54   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
 55 
 56   if (!fFactoryOn) {
 57     //
 58     analysisManager->SetVerboseLevel(1);
 59     // Only merge in MT mode to avoid warning when running in Sequential mode
 60 #ifdef G4MULTITHREADED
 61     analysisManager->SetNtupleMerging(true);
 62 #endif
 63 
 64     // Create directories
 65     analysisManager->SetHistoDirectoryName("histo");
 66     analysisManager->SetNtupleDirectoryName("ntuple");
 67   }
 68 
 69   // Open an output file
 70   //
 71   G4bool fileOpen = analysisManager->OpenFile("AnaEx01");
 72   if (!fileOpen) {
 73     G4cerr << "\n---> HistoManager::Book(): cannot open " << analysisManager->GetFileName()
 74            << G4endl;
 75     return;
 76   }
 77 
 78   if (!fFactoryOn) {
 79     // Create histograms.
 80     // Histogram ids are generated automatically starting from 0.
 81     // The start value can be changed by:
 82     // analysisManager->SetFirstHistoId(1);
 83 
 84     // id = 0
 85     analysisManager->CreateH1("EAbs", "Edep in absorber (MeV)", 100, 0., 800 * MeV);
 86     // id = 1
 87     analysisManager->CreateH1("EGap", "Edep in gap (MeV)", 100, 0., 100 * MeV);
 88     // id = 2
 89     analysisManager->CreateH1("LAbs", "trackL in absorber (mm)", 100, 0., 1 * m);
 90     // id = 3
 91     analysisManager->CreateH1("LGap", "trackL in gap (mm)", 100, 0., 50 * cm);
 92 
 93     // Create ntuples.
 94     // Ntuples ids are generated automatically starting from 0.
 95     // The start value can be changed by:
 96     // analysisManager->SetFirstMtupleId(1);
 97 
 98     // Create 1st ntuple (id = 0)
 99     analysisManager->CreateNtuple("Ntuple1", "Edep");
100     analysisManager->CreateNtupleDColumn("Eabs");  // column Id = 0
101     analysisManager->CreateNtupleDColumn("Egap");  // column Id = 1
102     analysisManager->FinishNtuple();
103 
104     // Create 2nd ntuple (id = 1)
105     //
106     analysisManager->CreateNtuple("Ntuple2", "TrackL");
107     analysisManager->CreateNtupleDColumn("Labs");  // column Id = 0
108     analysisManager->CreateNtupleDColumn("Lgap");  // column Id = 1
109     analysisManager->FinishNtuple();
110 
111     fFactoryOn = true;
112   }
113 
114   G4cout << "\n----> Output file is open in " << analysisManager->GetFileName() << "."
115          << analysisManager->GetFileType() << G4endl;
116 }
117 
118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
119 
120 void HistoManager::Save()
121 {
122   if (!fFactoryOn) {
123     return;
124   }
125 
126   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
127   analysisManager->Write();
128   analysisManager->CloseFile();
129 
130   G4cout << "\n----> Histograms and ntuples are saved\n" << G4endl;
131 }
132 
133 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
134 
135 void HistoManager::FillHisto(G4int ih, G4double xbin, G4double weight)
136 {
137   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
138   analysisManager->FillH1(ih, xbin, weight);
139 }
140 
141 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
142 
143 void HistoManager::Normalize(G4int ih, G4double fac)
144 {
145   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
146   auto h1 = analysisManager->GetH1(ih);
147   if (h1 != nullptr) {
148     h1->scale(fac);
149   }
150 }
151 
152 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
153 
154 void HistoManager::FillNtuple(G4double energyAbs, G4double energyGap, G4double trackLAbs,
155                               G4double trackLGap)
156 {
157   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
158   // Fill 1st ntuple ( id = 0)
159   analysisManager->FillNtupleDColumn(0, 0, energyAbs);
160   analysisManager->FillNtupleDColumn(0, 1, energyGap);
161   analysisManager->AddNtupleRow(0);
162   // Fill 2nd ntuple ( id = 1)
163   analysisManager->FillNtupleDColumn(1, 0, trackLAbs);
164   analysisManager->FillNtupleDColumn(1, 1, trackLGap);
165   analysisManager->AddNtupleRow(1);
166 }
167 
168 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
169 
170 void HistoManager::PrintStatistic()
171 {
172   if (!fFactoryOn) {
173     return;
174   }
175 
176   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
177 
178   G4cout << "\n ----> print histograms statistic \n" << G4endl;
179   for (G4int i = 0; i < analysisManager->GetNofH1s(); ++i) {
180     G4String name = analysisManager->GetH1Name(i);
181     auto h1 = analysisManager->GetH1(i);
182 
183     G4String unitCategory;
184     if (name[0U] == 'E') {
185       unitCategory = "Energy";
186     }
187     if (name[0U] == 'L') {
188       unitCategory = "Length";
189     }
190     // we use an explicit unsigned int type for operator [] argument
191     // to avoid problems with windows compiler
192 
193     G4cout << name << ": mean = " << G4BestUnit(h1->mean(), unitCategory)
194            << " rms = " << G4BestUnit(h1->rms(), unitCategory) << G4endl;
195   }
196 }
197 
198 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
199