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 // $Id: FCALRunAction.cc,v 1.7 2006-06-29 16:03:13 gunter Exp $ >> 27 // GEANT4 tag $Name: not supported by cvs2svn $ 26 // 28 // 27 // 29 // 28 30 29 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 30 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 31 33 >> 34 //#ifndef G4ANALYSIS_USE 32 35 33 #include "FCALRunAction.hh" 36 #include "FCALRunAction.hh" 34 37 35 #include "G4Run.hh" 38 #include "G4Run.hh" >> 39 #include "G4RunManager.hh" 36 #include "G4UImanager.hh" 40 #include "G4UImanager.hh" 37 #include "G4VVisManager.hh" 41 #include "G4VVisManager.hh" 38 #include "G4AnalysisManager.hh" << 42 #include "G4ios.hh" 39 43 >> 44 #include "Randomize.hh" >> 45 #include "FCALAnalysisManager.hh" >> 46 //#include <AIDA/AIDA.h> 40 47 41 //....oooOO0OOooo........oooOO0OOooo........oo 48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 42 49 43 FCALRunAction::FCALRunAction() 50 FCALRunAction::FCALRunAction() 44 { 51 { 45 // Get/create analysis manager << 46 G4AnalysisManager* man = G4AnalysisManager << 47 man->SetDefaultFileType("root"); << 48 << 49 // Open an output file << 50 G4cout << "Opening output file " << man->G << 51 man->SetFileName("fcal"); << 52 man->SetFirstHistoId(1); << 53 G4cout << " done" << G4endl; << 54 << 55 // Create histogram(s) << 56 man->CreateH1("1","Number of Out Of World" << 57 man->CreateH1("2","Number of Secondaries", << 58 man->CreateH1("3","Electromagnetic Energy/ << 59 man->CreateH1("4","hadronic Energy/MeV", 1 << 60 << 61 << 62 } 52 } 63 53 64 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 65 55 66 FCALRunAction::~FCALRunAction() 56 FCALRunAction::~FCALRunAction() 67 { 57 { >> 58 >> 59 // cleanHisto(); >> 60 68 } 61 } 69 62 >> 63 >> 64 //void FCALRunAction::bookHisto(){ >> 65 // >> 66 // AIDA::IAnalysisFactory* af = AIDA_createAnalysisFactory(); >> 67 // >> 68 // // Creating the tree factory >> 69 // AIDA::ITreeFactory* tf = af->createTreeFactory(); >> 70 // >> 71 // // Creating a tree mapped to an hbook file. >> 72 // tree = tf->create("fcal.paw", "hbook", false, true); >> 73 // >> 74 // // Creating a histogram factory, whose histograms will be handled by the tree >> 75 // AIDA::IHistogramFactory* hf = af->createHistogramFactory(*tree); >> 76 // >> 77 // // Creating a ntuple factory. >> 78 // >> 79 // AIDA::ITupleFactory* nf = af->createTupleFactory(*tree); >> 80 // >> 81 // // Creating ntuples >> 82 // >> 83 // ntuple[1] = nf->create("100","Number Out of World","float OutOfWorld, i, j"); >> 84 // >> 85 // ntuple[2] = nf->create("200","Secondary Info","float Secondary, i, j"); >> 86 // >> 87 // ntuple[3] = nf->create("300","Energy Deposits","float EmEdep, HadEdep"); >> 88 // >> 89 // // Creating Histograms >> 90 // >> 91 // histo[1] = hf->createHistogram1D("1","Number of OutOfWorld",100, 0., 100.); >> 92 // histo[2] = hf->createHistogram1D("2","Number of Secondaries",100, 0., 100.); >> 93 // histo[3] = hf->createHistogram1D("3","Electromagnetic Energy / MeV",100, 0., 100.); >> 94 // histo[4] = hf->createHistogram1D("4","Hadronic Energy / MeV",100, 0., 100.); >> 95 // >> 96 // delete hf; >> 97 // delete tf; >> 98 // delete af; >> 99 // delete nf; >> 100 // >> 101 //} >> 102 // >> 103 ////....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 104 // >> 105 //void FCALRunAction::cleanHisto() >> 106 //{ >> 107 // >> 108 // tree->commit(); // Writing the histograms to the file >> 109 // tree->close(); // and closing the tree (and the file) >> 110 // >> 111 // delete tree; >> 112 // >> 113 // >> 114 //} >> 115 // >> 116 >> 117 70 //....oooOO0OOooo........oooOO0OOooo........oo 118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 71 119 72 void FCALRunAction::BeginOfRunAction(const G4R 120 void FCALRunAction::BeginOfRunAction(const G4Run* aRun) 73 { 121 { 74 122 75 G4cout << "### Run " << aRun->GetRunID() << 123 G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl; 76 124 77 // if (G4VVisManager::GetConcreteInstance()) << 125 // if (aRun->GetRunID() == 0) bookHisto(); 78 // { << 126 79 // G4UImanager* UI = G4UImanager::GetUIpo << 127 if (G4VVisManager::GetConcreteInstance()) 80 // UI->ApplyCommand("/vis/scene/notifyHan << 128 { 81 // } << 129 G4UImanager* UI = G4UImanager::GetUIpointer(); 82 << 130 UI->ApplyCommand("/vis/scene/notifyHandlers"); 83 G4AnalysisManager* man = G4AnalysisManager << 131 } 84 man->OpenFile(); << 132 >> 133 #ifdef G4ANALYSIS_USE >> 134 >> 135 // book histograms and ntuples >> 136 >> 137 FCALAnalysisManager * analysis = FCALAnalysisManager::getInstance(); >> 138 analysis->book(); >> 139 >> 140 #endif >> 141 85 } 142 } 86 143 87 //....oooOO0OOooo........oooOO0OOooo........oo 144 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 88 145 89 void FCALRunAction::EndOfRunAction(const G4Run 146 void FCALRunAction::EndOfRunAction(const G4Run* ) 90 { 147 { 91 148 92 // if (G4VVisManager::GetConcreteInstance()) << 149 #ifdef G4ANALYSIS_USE 93 // G4UImanager::GetUIpointer()->ApplyComma << 150 FCALAnalysisManager* analysis = FCALAnalysisManager::getInstance(); 94 // } << 151 #endif 95 << 152 96 // Save histograms << 153 if (G4VVisManager::GetConcreteInstance()) { 97 G4AnalysisManager* man = G4AnalysisManager:: << 154 G4UImanager::GetUIpointer()->ApplyCommand("/vis/viewer/update"); 98 man->Write(); << 155 } 99 man->CloseFile(); << 156 >> 157 #ifdef G4ANALYSIS_USE >> 158 analysis->finish(); >> 159 #endif >> 160 100 } 161 } >> 162 >> 163 //#endif 101 164 102 165 103 //....oooOO0OOooo........oooOO0OOooo........oo 166 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 104 167 105 168 106 169 107 170 108 171 109 172 110 173