Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // Author: F. Poignant, floriane.poignant@gma 27 // 28 // file STCyclotronRunAction.cc 29 // 30 #include "STCyclotronRunAction.hh" 31 #include "STCyclotronRunActionMessenger.hh" 32 #include "STCyclotronPrimaryGeneratorAction.hh 33 #include "STCyclotronSensitiveTarget.hh" 34 #include "STCyclotronRun.hh" 35 #include "STCyclotronDetectorConstruction.hh" 36 #include "G4AnalysisManager.hh" 37 #include "G4GeneralParticleSource.hh" 38 #include "G4UserRunAction.hh" 39 #include "G4Run.hh" 40 #include "G4RunManager.hh" 41 #include "G4LogicalVolumeStore.hh" 42 #include "G4LogicalVolume.hh" 43 #include "G4UnitsTable.hh" 44 #include "G4PhysicalConstants.hh" 45 #include "G4SystemOfUnits.hh" 46 47 #include <iomanip> 48 #include <cmath> 49 50 51 STCyclotronRunAction::STCyclotronRunAction(STC 52 { 53 54 //------------------------------------------ 55 //Set printing event number per each 100 eve 56 //G4RunManager::GetRunManager()->SetPrintPro 57 //------------------------------------------ 58 fMessenger = new STCyclotronRunActionMesseng 59 fIrradiationTime = 3.; //in hour 60 fIn = 185; //in mm 61 fOut = 188; //in mm 62 63 //------------------------------------------ 64 // Analysis Manager for storage of data in h 65 //------------------------------------------ 66 67 auto analysisManager = G4AnalysisManager::In 68 analysisManager->SetDefaultFileType("root"); 69 G4cout << "Using " << analysisManager->GetTy 70 analysisManager->SetVerboseLevel(1); 71 72 //The edges/bin are default value that may b 73 //Create TH1D histograms 74 analysisManager->CreateH1("H10","Energy of t 75 analysisManager->CreateH1("H11","Energy of t 76 analysisManager->CreateH1("H12","Energy spec 77 analysisManager->CreateH1("H13","Energy of t 78 analysisManager->CreateH1("H14","Depth of is 79 analysisManager->CreateH1("H15","Energy spec 80 analysisManager->CreateH1("H16","Energy spec 81 analysisManager->CreateH1("H17","Energy spec 82 analysisManager->CreateH1("H18","Energy spec 83 analysisManager->CreateH1("H19","Energy spec 84 analysisManager->CreateH1("H110","Energy spe 85 analysisManager->CreateH1("H111","Energy spe 86 analysisManager->CreateH1("H112","Energy spe 87 analysisManager->CreateH1("H113","Energy spe 88 analysisManager->CreateH1("H114","Energy spe 89 90 //Create TH2D histograms 91 92 analysisManager->CreateH2("H20", "Beam inten 93 analysisManager->CreateH2("H21", "Beam inten 94 analysisManager->CreateH2("H22", "Radioisoto 95 analysisManager->CreateH2("H23", "Energy (Me 96 analysisManager->CreateH2("H24", "Beam inten 97 analysisManager->CreateH2("H25", "Beam inten 98 } 99 100 STCyclotronRunAction::~STCyclotronRunAction() 101 { 102 delete fMessenger; 103 } 104 105 G4Run* STCyclotronRunAction::GenerateRun() 106 { 107 fRun = new STCyclotronRun(); 108 return fRun; 109 } 110 111 void STCyclotronRunAction::BeginOfRunAction(co 112 { 113 //------------------------------------------ 114 // Inform the runManager to save random 115 //------------------------------------------ 116 G4RunManager::GetRunManager()->SetRandomNumb 117 auto analysisManager = G4AnalysisManager::In 118 analysisManager->OpenFile("SolidTargetCyclot 119 } 120 121 void STCyclotronRunAction::EndOfRunAction(cons 122 { 123 if(isMaster)fRun->EndOfRun(fIrradiationTime) 124 auto analysisManager = G4AnalysisManager::In 125 analysisManager->Write(); 126 analysisManager->CloseFile(); 127 128 } 129 130 void STCyclotronRunAction::SetIrradiationTime( 131 { 132 if(fIrradiationTime != time){ 133 fIrradiationTime = time; 134 G4cout << "The time of irradiation is now 135 } 136 } 137