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 // 26 /// \file electromagnetic/TestEm11/include/His << 23 // $Id: HistoManager.hh,v 1.1 2005/06/03 15:19:49 maire Exp $ 27 /// \brief Definition of the HistoManager clas << 24 // GEANT4 tag $Name: geant4-07-01 $ 28 // << 29 // << 30 // 25 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 26 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 28 34 #ifndef HistoManager_h 29 #ifndef HistoManager_h 35 #define HistoManager_h 1 30 #define HistoManager_h 1 36 31 37 #include "G4AnalysisManager.hh" << 38 #include "globals.hh" 32 #include "globals.hh" 39 33 40 //....oooOO0OOooo........oooOO0OOooo........oo 34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 35 >> 36 namespace AIDA { >> 37 class IAnalysisFactory; >> 38 class ITree; >> 39 class IHistogram1D; >> 40 } >> 41 >> 42 class HistoMessenger; >> 43 >> 44 const G4int MaxHisto = 8; >> 45 >> 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 47 42 class HistoManager 48 class HistoManager 43 { 49 { 44 public: 50 public: >> 51 45 HistoManager(); 52 HistoManager(); 46 ~HistoManager() = default; << 53 ~HistoManager(); >> 54 >> 55 void SetFileName (const G4String& name) { fileName[0] = name;}; >> 56 void SetFileType (const G4String& name) { fileType = name;}; >> 57 void SetFileOption (const G4String& name) { fileOption = name;}; >> 58 void book(); >> 59 void save(); >> 60 void SetHisto (G4int,G4int,G4double,G4double,const G4String& unit="none"); >> 61 void FillHisto(G4int id, G4double e, G4double weight = 1.0); >> 62 void RemoveHisto (G4int); >> 63 void Scale (G4int, G4double); >> 64 >> 65 G4bool HistoExist (G4int id) {return exist[id];} >> 66 G4double GetHistoUnit(G4int id) {return Unit[id];} >> 67 G4double GetBinWidth (G4int id) {return Width[id];} 47 68 48 private: 69 private: 49 void Book(); << 70 50 G4String fFileName = "testem11"; << 71 G4String fileName[2]; >> 72 G4String fileType; >> 73 G4String fileOption; >> 74 AIDA::IAnalysisFactory* af; >> 75 AIDA::ITree* tree; >> 76 AIDA::IHistogram1D* histo[MaxHisto]; >> 77 G4bool exist[MaxHisto]; >> 78 G4String Label[MaxHisto]; >> 79 G4String Title[MaxHisto]; >> 80 G4int Nbins[MaxHisto]; >> 81 G4double Vmin [MaxHisto]; >> 82 G4double Vmax [MaxHisto]; >> 83 G4double Unit [MaxHisto]; >> 84 G4double Width[MaxHisto]; >> 85 G4bool factoryOn; >> 86 HistoMessenger* histoMessenger; 51 }; 87 }; 52 88 53 //....oooOO0OOooo........oooOO0OOooo........oo 89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 54 90 55 #endif 91 #endif >> 92 56 93