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 #ifdef G4ANALYSIS_USE 26 // 27 // >> 28 // $Id$ 27 // ------------------------------------------- 29 // ------------------------------------------------------------ 28 // GEANT 4 class header file 30 // GEANT 4 class header file 29 // CERN Geneva Switzerland 31 // CERN Geneva Switzerland 30 // 32 // 31 // 33 // 32 // ------------ GammaRayTelAnalysis ---- 34 // ------------ GammaRayTelAnalysis ------ 33 // by R.Giannitrapani, F. Longo & G. 35 // by R.Giannitrapani, F. Longo & G.Santin (30 nov 2000) 34 // 36 // 35 // 03.04.2013 F.Longo and L.Pandola << 36 // - migrated to G4AnalysisManager << 37 // << 38 // 07.12.2001 A.Pfeiffer 37 // 07.12.2001 A.Pfeiffer 39 // - integrated Guy's addition of the ntuple 38 // - integrated Guy's addition of the ntuple 40 // 39 // 41 // 06.12.2001 A.Pfeiffer 40 // 06.12.2001 A.Pfeiffer 42 // - updating to new design (singleton) 41 // - updating to new design (singleton) 43 // 42 // 44 // 22.11.2001 G.Barrand 43 // 22.11.2001 G.Barrand 45 // - Adaptation to AIDA 44 // - Adaptation to AIDA 46 // ------------------------------------------- << 47 // Class description: << 48 // Example of analysis in a simulation applica << 49 // This class follows the singleton design pat << 50 // it is responsible for the analysis manageme << 51 // 45 // 52 // ------------------------------------------- << 46 // ************************************************************ 53 47 54 #ifndef GammaRayTelAnalysis_h 48 #ifndef GammaRayTelAnalysis_h 55 #define GammaRayTelAnalysis_h 1 49 #define GammaRayTelAnalysis_h 1 56 50 57 #include "globals.hh" 51 #include "globals.hh" 58 #include <vector> 52 #include <vector> 59 #include "G4ThreeVector.hh" 53 #include "G4ThreeVector.hh" 60 #include "G4AnalysisManager.hh" << 54 >> 55 #include <AIDA/AIDA.h> >> 56 >> 57 using namespace AIDA; 61 58 62 class GammaRayTelAnalysisMessenger; 59 class GammaRayTelAnalysisMessenger; 63 class GammaRayTelDetectorConstruction; 60 class GammaRayTelDetectorConstruction; 64 61 >> 62 class AIDA::IAnalysisFactory; >> 63 class AIDA::ITree; >> 64 class AIDA::IHistogramFactory; >> 65 class AIDA::ITupleFactory; >> 66 //class AIDA::IPlotter; >> 67 class AIDA::IHistogram1D; >> 68 class AIDA::IHistogram2D; >> 69 65 class GammaRayTelAnalysis { 70 class GammaRayTelAnalysis { 66 public: 71 public: 67 ~GammaRayTelAnalysis(); << 72 virtual ~GammaRayTelAnalysis(); 68 << 73 69 void BeginOfRun(); << 74 public: 70 75 71 void EndOfRun(); << 72 76 73 void EndOfEvent(G4int flag); << 77 // void BeginOfRun(G4int n); 74 78 75 void Init(); << 79 void BeginOfRun(); >> 80 void EndOfRun(G4int n); >> 81 void EndOfEvent(G4int flag); 76 82 77 void Finish(); << 83 void Init(); >> 84 void Finish(); 78 85 79 void SetHisto2DMode(G4String value) { << 86 void SetHisto1DDraw(G4String str) {histo1DDraw = str;}; 80 histo2DMode = value; << 87 void SetHisto1DSave(G4String str) {histo1DSave = str;}; 81 } << 88 void SetHisto2DDraw(G4String str) {histo2DDraw = str;}; >> 89 void SetHisto2DSave(G4String str) {histo2DSave = str;}; >> 90 void SetHisto2DMode(G4String str) {histo2DMode = str;}; 82 91 83 auto GetHisto2DMode() -> G4String { << 92 G4String GetHisto2DMode() {return histo2DMode;}; 84 return histo2DMode; << 85 } << 86 93 87 void InsertPositionXZ(G4double x, G4double z << 94 void InsertPositionXZ(double x, double z); >> 95 void InsertPositionYZ(double y, double z); >> 96 void InsertEnergy(double en); >> 97 void InsertHits(int nplane); 88 98 89 void InsertPositionYZ(G4double y, G4double z << 99 void setNtuple(float E, float p, float x, float y, float z); 90 100 91 void InsertEnergy(G4double energy); << 101 static GammaRayTelAnalysis* getInstance(); 92 102 93 void InsertHits(G4int planeNumber); << 103 private: 94 104 95 void setNtuple(G4double energy, G4int planeN << 105 GammaRayTelAnalysis(); 96 106 97 static auto getInstance() -> GammaRayTelAnal << 107 void plot1D(IHistogram1D* histo); >> 108 void plot2D(IHistogram2D* histo); >> 109 void Plot(); 98 110 99 private: 111 private: 100 GammaRayTelAnalysis(); << 112 static GammaRayTelAnalysis* instance; 101 << 102 void Plot(); << 103 113 104 static GammaRayTelAnalysis *instance; << 114 GammaRayTelDetectorConstruction* GammaRayTelDetector; 105 115 106 const GammaRayTelDetectorConstruction *detec << 116 IAnalysisFactory* analysisFactory; >> 117 ITree* tree; >> 118 //IPlotter* plotter; >> 119 ITuple* tuple; >> 120 >> 121 IHistogram1D* energy; >> 122 IHistogram1D* hits; >> 123 IHistogram2D* posXZ; >> 124 IHistogram2D* posYZ; >> 125 >> 126 G4String histo1DDraw; >> 127 G4String histo1DSave; >> 128 G4String histo2DDraw; >> 129 G4String histo2DSave; >> 130 G4String histo2DMode; 107 131 108 G4String histo2DMode; << 132 GammaRayTelAnalysisMessenger* analysisMessenger; >> 133 }; 109 134 110 G4String histogramFileName; << 111 135 112 GammaRayTelAnalysisMessenger *analysisMessen << 136 #endif 113 }; << 114 #endif 137 #endif 115 138