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 analysis/AnaEx01/include/HistoManage << 26 // $Id: HistoManager.hh,v 1.1 2010-11-08 10:38:44 maire Exp $ 27 /// \brief Definition of the HistoManager clas << 27 // GEANT4 tag $Name: not supported by cvs2svn $ 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 #ifndef HistoManager_h 32 #ifndef HistoManager_h 35 #define HistoManager_h 1 33 #define HistoManager_h 1 36 34 37 #include "G4AnalysisManager.hh" << 38 #include "globals.hh" 35 #include "globals.hh" 39 36 40 //....oooOO0OOooo........oooOO0OOooo........oo 37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 38 >> 39 namespace AIDA { >> 40 class IAnalysisFactory; >> 41 class ITree; >> 42 class IHistogram1D; >> 43 class ITuple; >> 44 } >> 45 const G4int MaxHisto = 5; >> 46 >> 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 48 42 class HistoManager 49 class HistoManager 43 { 50 { 44 public: 51 public: >> 52 45 HistoManager(); 53 HistoManager(); 46 ~HistoManager() = default; << 54 ~HistoManager(); 47 << 55 48 void Book(); << 56 void book(); 49 void Save(); << 57 void save(); 50 << 58 51 void FillHisto(G4int id, G4double e, G4dou << 59 void FillHisto(G4int id, G4double bin, G4double weight = 1.0); 52 void Normalize(G4int id, G4double fac); << 60 void Normalize(G4int id, G4double fac); 53 << 61 54 void FillNtuple(G4double EnergyAbs, G4doub << 62 void FillNtuple(G4int column, G4double value); 55 << 63 void AddRowNtuple(); >> 64 56 void PrintStatistic(); 65 void PrintStatistic(); 57 << 66 58 private: 67 private: 59 G4bool fFactoryOn = false; << 68 >> 69 AIDA::IAnalysisFactory* af; >> 70 AIDA::ITree* tree; >> 71 >> 72 AIDA::IHistogram1D* histo[MaxHisto]; >> 73 AIDA::ITuple* ntupl; 60 }; 74 }; 61 75 62 //....oooOO0OOooo........oooOO0OOooo........oo 76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 63 77 64 #endif 78 #endif >> 79 65 80