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 electromagnetic/TestEm11/src/HistoMa << 26 // $Id: HistoManager.cc,v 1.4 2006/07/06 15:56:38 maire Exp $ 27 /// \brief Implementation of the HistoManager << 27 // GEANT4 tag $Name: geant4-09-00 $ 28 // << 29 // << 30 // 28 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 31 34 #include "HistoManager.hh" 32 #include "HistoManager.hh" 35 << 33 #include "HistoMessenger.hh" 36 #include "DetectorConstruction.hh" << 37 << 38 #include "G4UnitsTable.hh" 34 #include "G4UnitsTable.hh" 39 35 >> 36 #ifdef G4ANALYSIS_USE >> 37 #include "AIDA/AIDA.h" >> 38 #endif >> 39 40 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 41 42 HistoManager::HistoManager() 42 HistoManager::HistoManager() >> 43 :af(0),tree(0),factoryOn(false) >> 44 { >> 45 #ifdef G4ANALYSIS_USE >> 46 // Creating the analysis factory >> 47 af = AIDA_createAnalysisFactory(); >> 48 if(!af) { >> 49 G4cout << " HistoManager::HistoManager() :" >> 50 << " problem creating the AIDA analysis factory." >> 51 << G4endl; >> 52 } >> 53 #endif >> 54 >> 55 fileName[0] = "testem11"; >> 56 fileType = "hbook"; >> 57 fileOption = "--noErrors uncompress"; >> 58 // histograms >> 59 for (G4int k=0; k<MaxHisto; k++) { >> 60 histo[k] = 0; >> 61 exist[k] = false; >> 62 Unit[k] = 1.0; >> 63 Width[k] = 1.0; >> 64 } >> 65 >> 66 histoMessenger = new HistoMessenger(this); >> 67 >> 68 stepMax = DBL_MAX; >> 69 } >> 70 >> 71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 72 >> 73 HistoManager::~HistoManager() >> 74 { >> 75 delete histoMessenger; >> 76 >> 77 #ifdef G4ANALYSIS_USE >> 78 delete af; >> 79 #endif >> 80 } >> 81 >> 82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 83 >> 84 void HistoManager::book() 43 { 85 { 44 Book(); << 86 #ifdef G4ANALYSIS_USE >> 87 if(!af) return; >> 88 >> 89 // Creating a tree mapped to an hbook file. >> 90 fileName[1] = fileName[0] + "." + fileType; >> 91 G4bool readOnly = false; >> 92 G4bool createNew = true; >> 93 AIDA::ITreeFactory* tf = af->createTreeFactory(); >> 94 tree = tf->create(fileName[1], fileType, readOnly, createNew, fileOption); >> 95 delete tf; >> 96 if(!tree) { >> 97 G4cout << "HistoManager::book() :" >> 98 << " problem creating the AIDA tree with " >> 99 << " storeName = " << fileName[1] >> 100 << " storeType = " << fileType >> 101 << " readOnly = " << readOnly >> 102 << " createNew = " << createNew >> 103 << " options = " << fileOption >> 104 << G4endl; >> 105 return; >> 106 } >> 107 >> 108 // Creating a histogram factory, whose histograms will be handled by the tree >> 109 AIDA::IHistogramFactory* hf = af->createHistogramFactory(*tree); >> 110 >> 111 // create selected histograms >> 112 for (G4int k=0; k<MaxHisto; k++) { >> 113 if (exist[k]) { >> 114 histo[k] = hf->createHistogram1D( Label[k], Title[k], >> 115 Nbins[k], Vmin[k], Vmax[k]); >> 116 factoryOn = true; >> 117 } >> 118 } >> 119 delete hf; >> 120 if (factoryOn) >> 121 G4cout << "\n----> Histogram Tree is opened in " << fileName[1] << G4endl; >> 122 #endif 45 } 123 } 46 124 47 //....oooOO0OOooo........oooOO0OOooo........oo 125 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 126 49 void HistoManager::Book() << 127 void HistoManager::save() 50 { 128 { 51 // Create or get analysis manager << 129 #ifdef G4ANALYSIS_USE 52 // The choice of analysis technology is done << 130 if (factoryOn) { 53 // in HistoManager.hh << 131 tree->commit(); // Writing the histograms to the file 54 G4AnalysisManager* analysisManager = G4Analy << 132 tree->close(); // and closing the tree (and the file) 55 analysisManager->SetDefaultFileType("root"); << 133 G4cout << "\n----> Histogram Tree is saved in " << fileName[1] << G4endl; 56 analysisManager->SetFileName(fFileName); << 134 57 analysisManager->SetVerboseLevel(1); << 135 delete tree; 58 analysisManager->SetActivation(true); << 136 tree = 0; 59 << 137 factoryOn = false; 60 // Define histograms start values << 61 const G4int kMaxHisto = 10; << 62 const G4String id[] = {"0", "1", "2", "3" << 63 "12", "13", "14", "15 << 64 << 65 const G4String title[] = { << 66 "dummy", // 0 << 67 "Edep (MeV/mm) along absorbers", // 1 << 68 "total Energy deposited in absorbers", // << 69 "true track length of the primary particle << 70 "true step size of the primary particle", << 71 "projected range of the primary particle", << 72 "true track length of charged secondaries" << 73 "true step size of charged secondaries", << 74 "Edep (MeV.cm2/g) along x/r0", // 8 << 75 "total Energy leakage", // 9 << 76 "total Energy : Edep + Eleak" // 10 << 77 }; << 78 << 79 // Default values (to be reset via /analysis << 80 G4int nbins = 100; << 81 G4double vmin = 0.; << 82 G4double vmax = 100.; << 83 << 84 // Create all histograms as inactivated << 85 // as we have not yet set nbins, vmin, vmax << 86 for (G4int k = 0; k <= kMaxHisto; k++) { << 87 G4int ih = analysisManager->CreateH1(id[k] << 88 analysisManager->SetH1Activation(ih, false << 89 } << 90 << 91 G4String title2; << 92 for (G4int k = 1; k < kMaxAbsor; k++) { << 93 title2 = "Edep in absorber " + id[k]; << 94 G4int ih = analysisManager->CreateH1(id[kM << 95 analysisManager->SetH1Activation(ih, false << 96 } 138 } >> 139 #endif 97 } 140 } 98 141 99 //....oooOO0OOooo........oooOO0OOooo........oo 142 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 143 >> 144 void HistoManager::FillHisto(G4int ih, G4double e, G4double weight) >> 145 { >> 146 if (ih > MaxHisto) { >> 147 G4cout << "---> warning from HistoManager::FillHisto() : histo " << ih >> 148 << "does not exist; e= " << e << " w= " << weight << G4endl; >> 149 return; >> 150 } >> 151 #ifdef G4ANALYSIS_USE >> 152 if(exist[ih]) histo[ih]->fill(e/Unit[ih], weight); >> 153 #endif >> 154 } >> 155 >> 156 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 157 >> 158 void HistoManager::SetHisto(G4int ih, >> 159 G4int nbins, G4double valmin, G4double valmax, const G4String& unit) >> 160 { >> 161 if (ih > MaxHisto) { >> 162 G4cout << "---> warning from HistoManager::SetHisto() : histo " << ih >> 163 << "does not exist" << G4endl; >> 164 return; >> 165 } >> 166 >> 167 const G4String id[] = { "0", "1", "2", "3", "4", "5", "6", "7" }; >> 168 const G4String title[] = >> 169 { "dummy", //0 >> 170 "Edep (MeV/mm) along absorber", //1 >> 171 "total Energy deposited in absorber", //2 >> 172 "true track length of the primary particle", //3 >> 173 "true step size of the primary particle", //4 >> 174 "projected range of the primary particle", //5 >> 175 "true track length of charged secondaries", //6 >> 176 "true step size of charged secondaries" //7 >> 177 }; >> 178 >> 179 >> 180 G4String titl = title[ih]; >> 181 G4double vmin = valmin, vmax = valmax; >> 182 Unit[ih] = 1.; >> 183 >> 184 if (unit != "none") { >> 185 titl = title[ih] + " (" + unit + ")"; >> 186 Unit[ih] = G4UnitDefinition::GetValueOf(unit); >> 187 vmin = valmin/Unit[ih]; vmax = valmax/Unit[ih]; >> 188 } >> 189 >> 190 exist[ih] = true; >> 191 Label[ih] = id[ih]; >> 192 Title[ih] = titl; >> 193 Nbins[ih] = nbins; >> 194 Vmin[ih] = vmin; >> 195 Vmax[ih] = vmax; >> 196 Width[ih] = (valmax-valmin)/nbins; >> 197 >> 198 G4cout << "----> SetHisto " << ih << ": " << titl << "; " >> 199 << nbins << " bins from " >> 200 << vmin << " " << unit << " to " << vmax << " " << unit << G4endl; >> 201 >> 202 // compute constraint on stepMax from histos 1 >> 203 // >> 204 G4double frac = 1.; >> 205 if (ih == 1) { >> 206 stepMax = frac*Width[ih]; >> 207 G4cout << " stepMax = " << G4BestUnit(stepMax,"Length") << G4endl; >> 208 } >> 209 } >> 210 >> 211 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 212 >> 213 void HistoManager::RemoveHisto(G4int ih) >> 214 { >> 215 if (ih > MaxHisto) { >> 216 G4cout << "---> warning from HistoManager::RemoveHisto() : histo " << ih >> 217 << "does not exist" << G4endl; >> 218 return; >> 219 } >> 220 >> 221 histo[ih] = 0; exist[ih] = false; >> 222 } >> 223 >> 224 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 225 >> 226 void HistoManager::Scale(G4int ih, G4double fac) >> 227 { >> 228 if (ih > MaxHisto) { >> 229 G4cout << "---> warning from HistoManager::RemoveHisto() : histo " << ih >> 230 << "does not exist" << G4endl; >> 231 return; >> 232 } >> 233 #ifdef G4ANALYSIS_USE >> 234 if(exist[ih]) histo[ih]->scale(fac); >> 235 #endif >> 236 } >> 237 >> 238 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 239 100 240