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