| [1337] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // $Id: HadrontherapyAnalisysManager.cc;
|
|---|
| 27 | // See more at: http://g4advancedexamples.lngs.infn.it/Examples/hadrontherapy
|
|---|
| [807] | 28 |
|
|---|
| 29 | #include "HadrontherapyAnalysisManager.hh"
|
|---|
| [1230] | 30 | #include "HadrontherapyMatrix.hh"
|
|---|
| 31 | #include "HadrontherapyAnalysisFileMessenger.hh"
|
|---|
| 32 | #include <time.h>
|
|---|
| [1313] | 33 |
|
|---|
| [807] | 34 | HadrontherapyAnalysisManager* HadrontherapyAnalysisManager::instance = 0;
|
|---|
| 35 |
|
|---|
| [1313] | 36 | HadrontherapyAnalysisManager::HadrontherapyAnalysisManager():
|
|---|
| 37 | #ifdef G4ANALYSIS_USE_ROOT
|
|---|
| 38 | analysisFileName("DoseDistribution.root"),theTFile(0), histo1(0), histo2(0), histo3(0),
|
|---|
| 39 | histo4(0), histo5(0), histo6(0), histo7(0), histo8(0), histo9(0), histo10(0), histo11(0), histo12(0), histo13(0), histo14(0), histo15(0), histo16(0),
|
|---|
| 40 | kinFragNtuple(0),
|
|---|
| 41 | kineticEnergyPrimaryNtuple(0),
|
|---|
| 42 | doseFragNtuple(0),
|
|---|
| 43 | fluenceFragNtuple(0),
|
|---|
| 44 | letFragNtuple(0),
|
|---|
| 45 | theROOTNtuple(0),
|
|---|
| 46 | theROOTIonTuple(0),
|
|---|
| 47 | fragmentNtuple(0),
|
|---|
| 48 | metaData(0),
|
|---|
| 49 | eventCounter(0)
|
|---|
| 50 | {
|
|---|
| 51 | fMess = new HadrontherapyAnalysisFileMessenger(this);
|
|---|
| 52 | }
|
|---|
| [1230] | 53 | #endif
|
|---|
| 54 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 55 |
|
|---|
| [1313] | 56 | HadrontherapyAnalysisManager::~HadrontherapyAnalysisManager()
|
|---|
| [1230] | 57 | {
|
|---|
| [1313] | 58 | delete(fMess);
|
|---|
| 59 | #ifdef G4ANALYSIS_USE_ROOT
|
|---|
| 60 | Clear();
|
|---|
| 61 | #endif
|
|---|
| [807] | 62 | }
|
|---|
| [1313] | 63 |
|
|---|
| 64 | HadrontherapyAnalysisManager* HadrontherapyAnalysisManager::GetInstance()
|
|---|
| [1230] | 65 | {
|
|---|
| [1313] | 66 | if (instance == 0) instance = new HadrontherapyAnalysisManager;
|
|---|
| 67 | return instance;
|
|---|
| [1230] | 68 | }
|
|---|
| [1313] | 69 | #ifdef G4ANALYSIS_USE_ROOT
|
|---|
| 70 | void HadrontherapyAnalysisManager::Clear()
|
|---|
| [1230] | 71 | {
|
|---|
| [1313] | 72 | // XXX delete ALL variables!!
|
|---|
| 73 | // but this seems to be automatically done by
|
|---|
| 74 | // theTFile->Close() command!
|
|---|
| 75 | // so we get a *double free or corruption*
|
|---|
| [807] | 76 |
|
|---|
| [1313] | 77 | delete metaData;
|
|---|
| 78 | metaData = 0;
|
|---|
| [1230] | 79 |
|
|---|
| [1313] | 80 | delete fragmentNtuple;
|
|---|
| 81 | fragmentNtuple = 0;
|
|---|
| [807] | 82 |
|
|---|
| [1313] | 83 | delete theROOTIonTuple;
|
|---|
| 84 | theROOTIonTuple = 0;
|
|---|
| [1230] | 85 |
|
|---|
| [1313] | 86 | delete theROOTNtuple;
|
|---|
| 87 | theROOTNtuple = 0;
|
|---|
| [1230] | 88 |
|
|---|
| [1313] | 89 | delete histo16;
|
|---|
| 90 | histo16 = 0;
|
|---|
| [807] | 91 |
|
|---|
| [1313] | 92 | delete histo15;
|
|---|
| 93 | histo15 = 0;
|
|---|
| [807] | 94 |
|
|---|
| [1313] | 95 | delete histo14;
|
|---|
| 96 | histo14 = 0;
|
|---|
| [807] | 97 |
|
|---|
| [1313] | 98 | delete histo13;
|
|---|
| 99 | histo13 = 0;
|
|---|
| [807] | 100 |
|
|---|
| [1313] | 101 | delete histo12;
|
|---|
| 102 | histo12 = 0;
|
|---|
| [807] | 103 |
|
|---|
| [1313] | 104 | delete histo11;
|
|---|
| 105 | histo11 = 0;
|
|---|
| [807] | 106 |
|
|---|
| [1313] | 107 | delete histo10;
|
|---|
| 108 | histo10 = 0;
|
|---|
| [807] | 109 |
|
|---|
| [1313] | 110 | delete histo9;
|
|---|
| 111 | histo9 = 0;
|
|---|
| [807] | 112 |
|
|---|
| [1313] | 113 | delete histo8;
|
|---|
| 114 | histo8 = 0;
|
|---|
| [807] | 115 |
|
|---|
| [1313] | 116 | delete histo7;
|
|---|
| 117 | histo7 = 0;
|
|---|
| [807] | 118 |
|
|---|
| [1313] | 119 | delete histo6;
|
|---|
| 120 | histo6 = 0;
|
|---|
| [807] | 121 |
|
|---|
| [1313] | 122 | delete histo5;
|
|---|
| 123 | histo5 = 0;
|
|---|
| [807] | 124 |
|
|---|
| [1313] | 125 | delete histo4;
|
|---|
| 126 | histo4 = 0;
|
|---|
| [807] | 127 |
|
|---|
| [1313] | 128 | delete histo3;
|
|---|
| 129 | histo3 = 0;
|
|---|
| [1230] | 130 |
|
|---|
| [1313] | 131 | delete histo2;
|
|---|
| 132 | histo2 = 0;
|
|---|
| [807] | 133 |
|
|---|
| [1313] | 134 | delete histo1;
|
|---|
| 135 | histo1 = 0;
|
|---|
| [807] | 136 | }
|
|---|
| [1230] | 137 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 138 |
|
|---|
| [1230] | 139 | void HadrontherapyAnalysisManager::SetAnalysisFileName(G4String aFileName)
|
|---|
| [807] | 140 | {
|
|---|
| [1313] | 141 | this->analysisFileName = aFileName;
|
|---|
| [1230] | 142 | }
|
|---|
| 143 |
|
|---|
| [1313] | 144 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1230] | 145 | void HadrontherapyAnalysisManager::book()
|
|---|
| 146 | {
|
|---|
| [1313] | 147 | delete theTFile; // this is similar to theTFile->Close() => delete all associated variables created via new, moreover it delete itself.
|
|---|
| [807] | 148 |
|
|---|
| [1313] | 149 | theTFile = new TFile(analysisFileName, "RECREATE");
|
|---|
| [1230] | 150 |
|
|---|
| [1313] | 151 | // Create the histograms with the energy deposit along the X axis
|
|---|
| 152 | histo1 = createHistogram1D("braggPeak","slice, energy", 400, 0., 80); //<different waterthicknesses are accoutned for in ROOT-analysis stage
|
|---|
| 153 | histo2 = createHistogram1D("h20","Secondary protons - slice, energy", 400, 0., 400.);
|
|---|
| 154 | histo3 = createHistogram1D("h30","Secondary neutrons - slice, energy", 400, 0., 400.);
|
|---|
| 155 | histo4 = createHistogram1D("h40","Secondary alpha - slice, energy", 400, 0., 400.);
|
|---|
| 156 | histo5 = createHistogram1D("h50","Secondary gamma - slice, energy", 400, 0., 400.);
|
|---|
| 157 | histo6 = createHistogram1D("h60","Secondary electron - slice, energy", 400, 0., 400.);
|
|---|
| 158 | histo7 = createHistogram1D("h70","Secondary triton - slice, energy", 400, 0., 400.);
|
|---|
| 159 | histo8 = createHistogram1D("h80","Secondary deuteron - slice, energy", 400, 0., 400.);
|
|---|
| 160 | histo9 = createHistogram1D("h90","Secondary pion - slice, energy", 400, 0., 400.);
|
|---|
| 161 | histo10 = createHistogram1D("h100","Energy distribution of secondary electrons", 70, 0., 70.);
|
|---|
| 162 | histo11 = createHistogram1D("h110","Energy distribution of secondary photons", 70, 0., 70.);
|
|---|
| 163 | histo12 = createHistogram1D("h120","Energy distribution of secondary deuterons", 70, 0., 70.);
|
|---|
| 164 | histo13 = createHistogram1D("h130","Energy distribution of secondary tritons", 70, 0., 70.);
|
|---|
| 165 | histo14 = createHistogram1D("h140","Energy distribution of secondary alpha particles", 70, 0., 70.);
|
|---|
| 166 | histo15 = createHistogram1D("heliumEnergyAfterPhantom","Energy distribution of secondary helium fragments after the phantom",
|
|---|
| 167 | 70, 0., 500.);
|
|---|
| 168 | histo16 = createHistogram1D("hydrogenEnergyAfterPhantom","Energy distribution of secondary helium fragments after the phantom",
|
|---|
| 169 | 70, 0., 500.);
|
|---|
| [1230] | 170 |
|
|---|
| [1313] | 171 | kinFragNtuple = new TNtuple("kinFragNtuple",
|
|---|
| 172 | "Kinetic energy by voxel & fragment",
|
|---|
| 173 | "i:j:k:A:Z:kineticEnergy");
|
|---|
| 174 | kineticEnergyPrimaryNtuple= new TNtuple("kineticEnergyPrimaryNtuple",
|
|---|
| 175 | "Kinetic energy by voxel of primary",
|
|---|
| 176 | "i:j:k:kineticEnergy");
|
|---|
| 177 | doseFragNtuple = new TNtuple("doseFragNtuple",
|
|---|
| 178 | "Energy deposit by voxel & fragment",
|
|---|
| 179 | "i:j:k:A:Z:energy");
|
|---|
| [1230] | 180 |
|
|---|
| [1313] | 181 | fluenceFragNtuple = new TNtuple("fluenceFragNtuple",
|
|---|
| 182 | "Fluence by voxel & fragment",
|
|---|
| 183 | "i:j:k:A:Z:fluence");
|
|---|
| [807] | 184 |
|
|---|
| [1313] | 185 | letFragNtuple = new TNtuple("letFragNtuple",
|
|---|
| 186 | "Let by voxel & fragment",
|
|---|
| 187 | "i:j:k:A:Z:letT:letD");
|
|---|
| [807] | 188 |
|
|---|
| [1313] | 189 | theROOTNtuple = new TNtuple("theROOTNtuple",
|
|---|
| 190 | "Energy deposit by slice",
|
|---|
| 191 | "i:j:k:energy");
|
|---|
| [807] | 192 |
|
|---|
| [1313] | 193 | theROOTIonTuple = new TNtuple("theROOTIonTuple",
|
|---|
| 194 | "Generic ion information",
|
|---|
| 195 | "a:z:occupancy:energy");
|
|---|
| [807] | 196 |
|
|---|
| [1313] | 197 | fragmentNtuple = new TNtuple("fragmentNtuple",
|
|---|
| 198 | "Fragments",
|
|---|
| 199 | "A:Z:energy:posX:posY:posZ");
|
|---|
| [807] | 200 |
|
|---|
| [1313] | 201 | metaData = new TNtuple("metaData",
|
|---|
| 202 | "Metadata",
|
|---|
| 203 | "events:detectorDistance:waterThickness:beamEnergy:energyError:phantomCenterDistance");
|
|---|
| [807] | 204 | }
|
|---|
| 205 |
|
|---|
| [1313] | 206 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1230] | 207 | void HadrontherapyAnalysisManager::FillEnergyDeposit(G4int i,
|
|---|
| [1313] | 208 | G4int j,
|
|---|
| 209 | G4int k,
|
|---|
| 210 | G4double energy)
|
|---|
| [807] | 211 | {
|
|---|
| [1313] | 212 | if (theROOTNtuple) {
|
|---|
| 213 | theROOTNtuple->Fill(i, j, k, energy);
|
|---|
| 214 | }
|
|---|
| [807] | 215 | }
|
|---|
| 216 |
|
|---|
| [1313] | 217 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 218 | void HadrontherapyAnalysisManager::BraggPeak(G4int slice, G4double energy)
|
|---|
| 219 | {
|
|---|
| [1313] | 220 | histo1->SetBinContent(slice, energy); //This uses setbincontent instead of fill to get labels correct
|
|---|
| [807] | 221 | }
|
|---|
| 222 |
|
|---|
| [1313] | 223 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 224 | void HadrontherapyAnalysisManager::SecondaryProtonEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 225 | {
|
|---|
| [1313] | 226 | histo2->Fill(slice, energy);
|
|---|
| [807] | 227 | }
|
|---|
| 228 |
|
|---|
| [1313] | 229 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 230 | void HadrontherapyAnalysisManager::SecondaryNeutronEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 231 | {
|
|---|
| [1313] | 232 | histo3->Fill(slice, energy);
|
|---|
| [807] | 233 | }
|
|---|
| 234 |
|
|---|
| [1313] | 235 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 236 | void HadrontherapyAnalysisManager::SecondaryAlphaEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 237 | {
|
|---|
| [1313] | 238 | histo4->Fill(slice, energy);
|
|---|
| [807] | 239 | }
|
|---|
| 240 |
|
|---|
| [1313] | 241 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 242 | void HadrontherapyAnalysisManager::SecondaryGammaEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 243 | {
|
|---|
| [1313] | 244 | histo5->Fill(slice, energy);
|
|---|
| [807] | 245 | }
|
|---|
| 246 |
|
|---|
| [1313] | 247 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 248 | void HadrontherapyAnalysisManager::SecondaryElectronEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 249 | {
|
|---|
| [1313] | 250 | histo6->Fill(slice, energy);
|
|---|
| [807] | 251 | }
|
|---|
| 252 |
|
|---|
| [1313] | 253 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 254 | void HadrontherapyAnalysisManager::SecondaryTritonEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 255 | {
|
|---|
| [1313] | 256 | histo7->Fill(slice, energy);
|
|---|
| [807] | 257 | }
|
|---|
| 258 |
|
|---|
| [1313] | 259 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 260 | void HadrontherapyAnalysisManager::SecondaryDeuteronEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 261 | {
|
|---|
| [1313] | 262 | histo8->Fill(slice, energy);
|
|---|
| [807] | 263 | }
|
|---|
| 264 |
|
|---|
| [1313] | 265 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 266 | void HadrontherapyAnalysisManager::SecondaryPionEnergyDeposit(G4int slice, G4double energy)
|
|---|
| 267 | {
|
|---|
| [1313] | 268 | histo9->Fill(slice, energy);
|
|---|
| [807] | 269 | }
|
|---|
| 270 |
|
|---|
| [1313] | 271 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 272 | void HadrontherapyAnalysisManager::electronEnergyDistribution(G4double energy)
|
|---|
| 273 | {
|
|---|
| [1313] | 274 | histo10->Fill(energy);
|
|---|
| [807] | 275 | }
|
|---|
| 276 |
|
|---|
| [1313] | 277 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 278 | void HadrontherapyAnalysisManager::gammaEnergyDistribution(G4double energy)
|
|---|
| 279 | {
|
|---|
| [1313] | 280 | histo11->Fill(energy);
|
|---|
| [807] | 281 | }
|
|---|
| 282 |
|
|---|
| [1313] | 283 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 284 | void HadrontherapyAnalysisManager::deuteronEnergyDistribution(G4double energy)
|
|---|
| 285 | {
|
|---|
| [1313] | 286 | histo12->Fill(energy);
|
|---|
| [807] | 287 | }
|
|---|
| 288 |
|
|---|
| [1313] | 289 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 290 | void HadrontherapyAnalysisManager::tritonEnergyDistribution(G4double energy)
|
|---|
| 291 | {
|
|---|
| [1313] | 292 | histo13->Fill(energy);
|
|---|
| [807] | 293 | }
|
|---|
| 294 |
|
|---|
| [1313] | 295 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [807] | 296 | void HadrontherapyAnalysisManager::alphaEnergyDistribution(G4double energy)
|
|---|
| 297 | {
|
|---|
| [1313] | 298 | histo14->Fill(energy);
|
|---|
| [807] | 299 | }
|
|---|
| [1313] | 300 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1230] | 301 | void HadrontherapyAnalysisManager::heliumEnergy(G4double secondaryParticleKineticEnergy)
|
|---|
| 302 | {
|
|---|
| [1313] | 303 | histo15->Fill(secondaryParticleKineticEnergy);
|
|---|
| [1230] | 304 | }
|
|---|
| [807] | 305 |
|
|---|
| [1313] | 306 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1230] | 307 | void HadrontherapyAnalysisManager::hydrogenEnergy(G4double secondaryParticleKineticEnergy)
|
|---|
| 308 | {
|
|---|
| [1313] | 309 | histo16->Fill(secondaryParticleKineticEnergy);
|
|---|
| [1230] | 310 | }
|
|---|
| 311 |
|
|---|
| [1313] | 312 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 313 | // FillKineticFragmentTuple create an ntuple where the voxel indexs, the atomic number and mass and the kinetic
|
|---|
| 314 | // energy of all the particles interacting with the phantom, are stored
|
|---|
| 315 | void HadrontherapyAnalysisManager::FillKineticFragmentTuple(G4int i, G4int j, G4int k, G4int A, G4double Z, G4double kinEnergy)
|
|---|
| 316 | {
|
|---|
| 317 | kinFragNtuple -> Fill(i, j, k, A, Z, kinEnergy);
|
|---|
| 318 | }
|
|---|
| [1230] | 319 |
|
|---|
| [1313] | 320 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 321 | // FillKineticEnergyPrimaryNTuple creates a ntuple where the voxel indexs and the kinetic
|
|---|
| 322 | // energies of ONLY primary particles interacting with the phantom, are stored
|
|---|
| 323 | void HadrontherapyAnalysisManager::FillKineticEnergyPrimaryNTuple(G4int i, G4int j, G4int k, G4double kinEnergy)
|
|---|
| 324 | {
|
|---|
| 325 | kineticEnergyPrimaryNtuple -> Fill(i, j, k, kinEnergy);
|
|---|
| 326 | }
|
|---|
| [1230] | 327 |
|
|---|
| [1313] | 328 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 329 | // This function is called only if ROOT is activated.
|
|---|
| 330 | // It is called by the HadrontherapyMatric.cc class file and it is used to create two ntuples containing
|
|---|
| 331 | // the total energy deposited and the fluence values, in each voxel and per any particle (primary beam
|
|---|
| 332 | // and secondaries )
|
|---|
| 333 | void HadrontherapyAnalysisManager::FillVoxelFragmentTuple(G4int i, G4int j, G4int k, G4int A, G4double Z, G4double energy, G4double fluence)
|
|---|
| [1230] | 334 | {
|
|---|
| [1313] | 335 | // Fill the ntuple containing the voxel, mass and atomic number and the energy deposited
|
|---|
| 336 | doseFragNtuple -> Fill( i, j, k, A, Z, energy );
|
|---|
| 337 |
|
|---|
| 338 | // Fill the ntuple containing the voxel, mass and atomic number and the fluence
|
|---|
| 339 | if (i==1 && Z==1) {
|
|---|
| 340 | fluenceFragNtuple -> Fill( i, j, k, A, Z, fluence );
|
|---|
| [1230] | 341 |
|
|---|
| [1313] | 342 | }
|
|---|
| [1230] | 343 | }
|
|---|
| 344 |
|
|---|
| [1313] | 345 | void HadrontherapyAnalysisManager::FillLetFragmentTuple(G4int i, G4int j, G4int k, G4int A, G4double Z, G4double letT, G4double letD)
|
|---|
| [807] | 346 | {
|
|---|
| [1313] | 347 | letFragNtuple -> Fill( i, j, k, A, Z, letT, letD);
|
|---|
| [1230] | 348 |
|
|---|
| [807] | 349 | }
|
|---|
| [1313] | 350 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 351 | void HadrontherapyAnalysisManager::FillFragmentTuple(G4int A, G4double Z, G4double energy, G4double posX, G4double posY, G4double posZ)
|
|---|
| 352 | {
|
|---|
| 353 | fragmentNtuple->Fill(A, Z, energy, posX, posY, posZ);
|
|---|
| 354 | }
|
|---|
| [807] | 355 |
|
|---|
| [1313] | 356 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 357 | void HadrontherapyAnalysisManager::genericIonInformation(G4int a,
|
|---|
| 358 | G4double z,
|
|---|
| 359 | G4int electronOccupancy,
|
|---|
| 360 | G4double energy)
|
|---|
| 361 | {
|
|---|
| 362 | if (theROOTIonTuple) {
|
|---|
| 363 | theROOTIonTuple->Fill(a, z, electronOccupancy, energy);
|
|---|
| 364 | }
|
|---|
| 365 | }
|
|---|
| 366 |
|
|---|
| 367 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1230] | 368 | void HadrontherapyAnalysisManager::startNewEvent()
|
|---|
| 369 | {
|
|---|
| [1313] | 370 | eventCounter++;
|
|---|
| [1230] | 371 | }
|
|---|
| [1313] | 372 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1230] | 373 | void HadrontherapyAnalysisManager::setGeometryMetaData(G4double endDetectorPosition, G4double waterThickness, G4double phantomCenter)
|
|---|
| 374 | {
|
|---|
| [1313] | 375 | this->detectorDistance = endDetectorPosition;
|
|---|
| 376 | this->phantomDepth = waterThickness;
|
|---|
| 377 | this->phantomCenterDistance = phantomCenter;
|
|---|
| [1230] | 378 | }
|
|---|
| 379 | void HadrontherapyAnalysisManager::setBeamMetaData(G4double meanKineticEnergy,G4double sigmaEnergy)
|
|---|
| 380 | {
|
|---|
| [1313] | 381 | this->beamEnergy = meanKineticEnergy;
|
|---|
| 382 | this->energyError = sigmaEnergy;
|
|---|
| [1230] | 383 | }
|
|---|
| 384 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| [1313] | 385 | // Flush data & close the file
|
|---|
| [1230] | 386 | void HadrontherapyAnalysisManager::flush()
|
|---|
| 387 | {
|
|---|
| [1313] | 388 | if (theTFile)
|
|---|
| 389 | {
|
|---|
| 390 | theTFile -> Write();
|
|---|
| 391 | theTFile -> Close();
|
|---|
| 392 | }
|
|---|
| 393 | eventCounter = 0;
|
|---|
| [1230] | 394 | }
|
|---|
| 395 |
|
|---|
| [807] | 396 | #endif
|
|---|