Geant4  10.02
IORTAnalysisFileMessenger.cc
Go to the documentation of this file.
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 // This is the *BASIC* version of IORT, a Geant4-based application
27 //
28 // Main Authors: G.Russo(a,b), C.Casarino*(c), G.C. Candiano(c),
29 // G.A.P. Cirrone(d), F.Romano(d)
30 // Contributor Authors: S.Guatelli(e)
31 // Past Authors: G.Arnetta(c), S.E.Mazzaglia(d)
32 //
33 // (a) Fondazione Istituto San Raffaele G.Giglio, Cefalù, Italy
34 // (b) IBFM-CNR , Segrate (Milano), Italy
35 // (c) LATO (Laboratorio di Tecnologie Oncologiche), Cefalù, Italy
36 // (d) Laboratori Nazionali del Sud of the INFN, Catania, Italy
37 // (e) University of Wallongong, Australia
38 //
39 // *Corresponding author, email to carlo.casarino@polooncologicocefalu.it
41 
43 #include "IORTAnalysisManager.hh"
44 #include "G4UIcmdWithAString.hh"
45 #include "G4UIcmdWithABool.hh"
46 #include "G4UIdirectory.hh"
47 
48 #include "IORTMatrix.hh"
49 
52  AnalysisManager(amgr)
53 {
54  secondaryCmd = new G4UIcmdWithABool("/analysis/secondary",this);
55  secondaryCmd -> SetParameterName("secondary", true);
56  secondaryCmd -> SetDefaultValue("true");
57  secondaryCmd -> SetGuidance("Set if dose/fluence for the secondary particles will be written"
58  "\n[usage]: /analysis/secondary [true/false]");
59  secondaryCmd -> AvailableForStates(G4State_Idle, G4State_PreInit);
60 
61  DoseMatrixCmd = new G4UIcmdWithAString("/analysis/writeDoseFile",this);
62  DoseMatrixCmd->SetGuidance("Write the dose/fluence to an ASCII file");
63  DoseMatrixCmd->SetDefaultValue("Dose.out");
64  DoseMatrixCmd->SetParameterName("choice",true);
65 
66  // With this messenger you can:
67  // give a name to the generated .root file
68  // One can use this messenger to define a different .root file name other then the default one
69  FileNameCmd = new G4UIcmdWithAString("/analysis/setAnalysisFile",this);
70  FileNameCmd->SetGuidance("Set the .root filename for the root-output");
71  FileNameCmd->SetDefaultValue("default.root");
72  FileNameCmd->SetParameterName("choice",true);
74 
75 
76 }
77 
80 {
81  delete secondaryCmd;
82  delete DoseMatrixCmd;
83  delete FileNameCmd;
84 }
85 
88 {
89  if (command == secondaryCmd)
90  {
92  {
93  IORTMatrix::GetInstance() -> secondary = secondaryCmd -> GetNewBoolValue(newValue);
94  }
95  }
96 
97  else if (command == DoseMatrixCmd) // Filename can be passed here TODO
98  {
99  if ( IORTMatrix * pMatrix = IORTMatrix::GetInstance() )
100  {
101  pMatrix -> TotalEnergyDeposit();
102  pMatrix -> StoreDoseFluenceAscii(newValue);
103  pMatrix -> StoreDoseFluenceRoot();
104  // Finalize & write output file
105  IORTAnalysisManager::GetInstance() -> flush();
106  }
107  }
108  else if (command == FileNameCmd)
109  {
110  AnalysisManager->SetAnalysisFileName(newValue);
111  IORTAnalysisManager::GetInstance() -> book(); // Book for a new output file
112  }
113 }
114 
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
A class for connecting the simulation to an analysis package.
G4UIcmdWithABool * secondaryCmd
G4 user interface command (that takes a string argument) object Constructor requires command name and...
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:239
static IORTAnalysisManager * GetInstance()
Get the pointer to the analysis manager.
void SetDefaultValue(const char *defVal)
IORTAnalysisFileMessenger(IORTAnalysisManager *amgr)
static IORTMatrix * GetInstance()
Definition: IORTMatrix.cc:61
void SetNewValue(G4UIcommand *command, G4String newValue)
Called when new command given.