Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // >> 23 // $Id: HistoManager.hh,v 1.6 2005/03/01 17:55:19 maire Exp $ >> 24 // GEANT4 tag $Name: geant4-07-01 $ 26 // 25 // 27 //....oooOO0OOooo........oooOO0OOooo........oo 26 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 28 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 29 28 30 #ifndef HistoManager_h 29 #ifndef HistoManager_h 31 #define HistoManager_h 1 30 #define HistoManager_h 1 32 31 33 #include "G4AnalysisManager.hh" << 34 #include "globals.hh" 32 #include "globals.hh" 35 33 36 //....oooOO0OOooo........oooOO0OOooo........oo 34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 37 35 >> 36 namespace AIDA { >> 37 class IAnalysisFactory; >> 38 class ITree; >> 39 class IHistogram1D; >> 40 } >> 41 >> 42 class HistoMessenger; >> 43 38 #include "DetectorConstruction.hh" 44 #include "DetectorConstruction.hh" 39 const G4int kMaxHisto = 2 * kMaxAbsor + 5; << 45 const G4int MaxHisto = 2*MaxAbsor + 3; 40 46 41 //....oooOO0OOooo........oooOO0OOooo........oo 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 42 48 43 class HistoManager 49 class HistoManager 44 { 50 { 45 public: 51 public: >> 52 46 HistoManager(); 53 HistoManager(); 47 ~HistoManager() = default; << 54 ~HistoManager(); 48 << 55 >> 56 void SetFileName (const G4String& name) { fileName[0] = name;}; >> 57 void SetFileType (const G4String& name) { fileType = name;}; >> 58 void SetFileOption (const G4String& name) { fileOption = name;}; >> 59 void book(); >> 60 void save(); >> 61 void SetHisto (G4int,G4int,G4double,G4double,const G4String& unit="none"); >> 62 void FillHisto(G4int id, G4double bin, G4double weight = 1.0); >> 63 void Normalize(G4int id, G4double fac); >> 64 void RemoveHisto(G4int); >> 65 >> 66 G4bool HistoExist (G4int id) {return exist[id];} >> 67 G4double GetHistoUnit(G4int id) {return Unit[id];} >> 68 G4double GetBinWidth (G4int id) {return Width[id];} >> 69 49 private: 70 private: 50 void Book(); << 71 51 G4String fFileName = "testem3"; << 72 G4String fileName[2]; >> 73 G4String fileType; >> 74 G4String fileOption; >> 75 AIDA::IAnalysisFactory* af; >> 76 AIDA::ITree* tree; >> 77 AIDA::IHistogram1D* histo[MaxHisto]; >> 78 G4bool exist[MaxHisto]; >> 79 G4String Label[MaxHisto]; >> 80 G4String Title[MaxHisto]; >> 81 G4int Nbins[MaxHisto]; >> 82 G4double Vmin [MaxHisto]; >> 83 G4double Vmax [MaxHisto]; >> 84 G4double Unit [MaxHisto]; >> 85 G4double Width[MaxHisto]; >> 86 G4bool factoryOn; >> 87 HistoMessenger* histoMessenger; 52 }; 88 }; 53 89 54 //....oooOO0OOooo........oooOO0OOooo........oo 90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 55 91 56 #endif 92 #endif >> 93 57 94