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 HistoManager.cc 26 /// \file HistoManager.cc 27 /// \brief Implementation of the HistoManager 27 /// \brief Implementation of the HistoManager class 28 // 28 // 29 // << 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "HistoManager.hh" 33 #include "HistoManager.hh" 34 << 35 #include "G4UnitsTable.hh" 34 #include "G4UnitsTable.hh" 36 35 37 //....oooOO0OOooo........oooOO0OOooo........oo 36 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 38 37 39 HistoManager::HistoManager() 38 HistoManager::HistoManager() >> 39 : fFileName("rdecay02") 40 { 40 { 41 Book(); 41 Book(); 42 } 42 } 43 43 44 //....oooOO0OOooo........oooOO0OOooo........oo 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 45 >> 46 HistoManager::~HistoManager() >> 47 { >> 48 } >> 49 >> 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 51 46 void HistoManager::Book() 52 void HistoManager::Book() 47 { 53 { 48 // Create or get analysis manager 54 // Create or get analysis manager 49 // 55 // 50 G4AnalysisManager* analysis = G4AnalysisMana 56 G4AnalysisManager* analysis = G4AnalysisManager::Instance(); 51 << 57 52 analysis->SetDefaultFileType("root"); 58 analysis->SetDefaultFileType("root"); 53 analysis->SetFileName(fFileName); 59 analysis->SetFileName(fFileName); 54 analysis->SetVerboseLevel(1); 60 analysis->SetVerboseLevel(1); 55 analysis->SetActivation(true); // enable in << 61 analysis->SetActivation(true); //enable inactivation of histos, nTuples 56 << 62 57 // Default values (to be reset via /analysis << 63 // Default values (to be reset via /analysis/h1/set command) 58 G4int nbins = 100; 64 G4int nbins = 100; 59 G4double vmin = 0.; 65 G4double vmin = 0.; 60 G4double vmax = 100.; 66 G4double vmax = 100.; 61 67 62 // Create all histograms as inactivated << 68 // Create all histograms as inactivated 63 // as we have not yet set nbins, vmin, vmax 69 // as we have not yet set nbins, vmin, vmax 64 // 70 // 65 ////analysis->SetHistoDirectoryName("histo") << 71 ////analysis->SetHistoDirectoryName("histo"); 66 ////analysis->SetFirstHistoId(1); 72 ////analysis->SetFirstHistoId(1); 67 << 73 68 G4int id = analysis->CreateH1("H10", "Energy << 74 G4int id = analysis->CreateH1("H10","Energy deposit (MeV) in the target", 69 analysis->SetH1Activation(id, false); << 75 nbins, vmin, vmax); 70 << 71 id = analysis->CreateH1("H11", "Energy depos << 72 analysis->SetH1Activation(id, false); 76 analysis->SetH1Activation(id, false); 73 << 77 74 id = analysis->CreateH1("H12", "Total energy << 78 id = analysis->CreateH1("H11","Energy deposit (MeV) in the detector", >> 79 nbins, vmin, vmax); 75 analysis->SetH1Activation(id, false); 80 analysis->SetH1Activation(id, false); 76 81 77 id = analysis->CreateH1("H13", "Coincidence << 82 id = analysis->CreateH1("H12","Total energy (MeV) in target and detector", 78 nbins, vmin, vmax); << 83 nbins, vmin, vmax); 79 analysis->SetH1Activation(id, false); 84 analysis->SetH1Activation(id, false); 80 85 81 id = << 86 id = analysis->CreateH1("H13", 82 analysis->CreateH1("H14", "Anti-coincidenc << 87 "Coincidence spectrum (MeV) between the target and detector", 83 analysis->SetH1Activation(id, false); << 88 nbins, vmin, vmax); >> 89 analysis->SetH1Activation(id, false); 84 90 85 id = << 91 id = analysis->CreateH1("H14", 86 analysis->CreateH1("H15", "Anti-coincidenc << 92 "Anti-coincidence spectrum (MeV) in the traget", >> 93 nbins, vmin, vmax); 87 analysis->SetH1Activation(id, false); 94 analysis->SetH1Activation(id, false); 88 95 89 id = analysis->CreateH1("H16", "Decay emissi << 96 id = analysis->CreateH1("H15", 90 analysis->SetH1Activation(id, false); << 97 "Anti-coincidence spectrum (MeV) in the detector", >> 98 nbins, vmin, vmax); >> 99 analysis->SetH1Activation(id, false); 91 100 92 id = analysis->CreateH1("H17", "Decay emissi << 101 id = analysis->CreateH1("H16","Decay emission spectrum (0 - 10 MeV)", >> 102 nbins, vmin, vmax); >> 103 analysis->SetH1Activation(id, false); >> 104 >> 105 id = analysis->CreateH1("H17","Decay emission spectrum (0 - 1 MeV)", >> 106 nbins, vmin, vmax); 93 analysis->SetH1Activation(id, false); 107 analysis->SetH1Activation(id, false); 94 108 95 id = analysis->CreateH1("H18", "Decay emissi << 109 id = analysis->CreateH1("H18","Decay emission spectrum (0 - 0.1 MeV)", >> 110 nbins, vmin, vmax); 96 analysis->SetH1Activation(id, false); 111 analysis->SetH1Activation(id, false); 97 << 112 98 // nTuples 113 // nTuples 99 // 114 // 100 ////analysis->SetNtupleDirectoryName("ntuple 115 ////analysis->SetNtupleDirectoryName("ntuple"); 101 ////analysis->SetFirstNtupleId(1); 116 ////analysis->SetFirstNtupleId(1); 102 // << 117 // 103 analysis->CreateNtuple("T1", "Emitted Partic 118 analysis->CreateNtuple("T1", "Emitted Particles"); 104 analysis->CreateNtupleDColumn("PID"); // co << 119 analysis->CreateNtupleDColumn("PID"); //column 0 105 analysis->CreateNtupleDColumn("Energy"); // << 120 analysis->CreateNtupleDColumn("Energy"); //column 1 106 analysis->CreateNtupleDColumn("Time"); // c << 121 analysis->CreateNtupleDColumn("Time"); //column 2 107 analysis->CreateNtupleDColumn("Weight"); // << 122 analysis->CreateNtupleDColumn("Weight"); //column 3 108 analysis->FinishNtuple(); 123 analysis->FinishNtuple(); 109 << 124 110 analysis->CreateNtuple("T2", "RadioIsotopes" 125 analysis->CreateNtuple("T2", "RadioIsotopes"); 111 analysis->CreateNtupleDColumn("PID"); // co << 126 analysis->CreateNtupleDColumn("PID"); //column 0 112 analysis->CreateNtupleDColumn("Time"); // c << 127 analysis->CreateNtupleDColumn("Time"); //column 1 113 analysis->CreateNtupleDColumn("Weight"); // << 128 analysis->CreateNtupleDColumn("Weight"); //column 2 114 analysis->FinishNtuple(); 129 analysis->FinishNtuple(); 115 << 130 116 analysis->CreateNtuple("T3", "Energy deposit 131 analysis->CreateNtuple("T3", "Energy depositions"); 117 analysis->CreateNtupleDColumn("Energy"); // << 132 analysis->CreateNtupleDColumn("Energy"); //column 0 118 analysis->CreateNtupleDColumn("Time"); // c << 133 analysis->CreateNtupleDColumn("Time"); //column 1 119 analysis->CreateNtupleDColumn("Weight"); // << 134 analysis->CreateNtupleDColumn("Weight"); //column 2 120 analysis->FinishNtuple(); 135 analysis->FinishNtuple(); 121 << 136 122 analysis->CreateNtuple("RDecayProducts", "Al 137 analysis->CreateNtuple("RDecayProducts", "All Products of RDecay"); 123 analysis->CreateNtupleDColumn("PID"); // co << 138 analysis->CreateNtupleDColumn("PID"); //column 0 124 analysis->CreateNtupleDColumn("Z"); // colu << 139 analysis->CreateNtupleDColumn("Z"); //column 1 125 analysis->CreateNtupleDColumn("A"); // colu << 140 analysis->CreateNtupleDColumn("A"); //column 2 126 analysis->CreateNtupleDColumn("Energy"); // << 141 analysis->CreateNtupleDColumn("Energy"); //column 3 127 analysis->CreateNtupleDColumn("Time"); // c << 142 analysis->CreateNtupleDColumn("Time"); //column 4 128 analysis->CreateNtupleDColumn("Weight"); // << 143 analysis->CreateNtupleDColumn("Weight"); //column 5 129 analysis->FinishNtuple(); 144 analysis->FinishNtuple(); 130 << 145 131 analysis->SetNtupleActivation(false); << 146 analysis->SetNtupleActivation(false); 132 } 147 } 133 148 134 //....oooOO0OOooo........oooOO0OOooo........oo 149 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 135 150