Geant4  10.02.p01
XrayFluoAnalysisMessenger.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 //
27 // $Id: XrayFluoAnalysisMessenger.cc
28 // GEANT4 tag $Name: xray_fluo-V03-02-00
29 //
30 // Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
31 //
32 // History:
33 // -----------
34 // 28 Nov 2001 Elena Guardincerri Created
35 //
36 // -------------------------------------------------------------------
37 
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
41 
43  :xrayFluoAnalysis(analysisManager)
44 
45 {
46  XrayFluoAnalysisDir = new G4UIdirectory("/analysis/");
47  XrayFluoAnalysisDir->SetGuidance("analysis control.");
48 
49  outputFileCommand = new G4UIcmdWithAString("/analysis/outputFile",this);
50  outputFileCommand->SetGuidance("specify the name of the output file");
51  outputFileCommand->SetParameterName("choice",true);
52  outputFileCommand->SetDefaultValue("xrayfluo.root");
54 
55 
56  physicFlagCmd = new G4UIcmdWithABool("/analysis/setPhysicProduction",this);
57  physicFlagCmd->SetGuidance("Select if data stored in the Phase-Space must contain physical data or particles exiting the sample");
58  physicFlagCmd->SetGuidance("To be used before and togheter with /gun/loadGunData");
59  physicFlagCmd->SetParameterName("Physyc Flag",true);
62 
63 }
64 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
65 
67 {
68 
69  delete XrayFluoAnalysisDir;
70 
71 }
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
74 
76 {
77 
78  if(command == outputFileCommand)
79  {
81  }
82 
83  if( command == physicFlagCmd )
84  {
85  G4bool newPhysFlag = physicFlagCmd->GetNewBoolValue(newValue);
86  xrayFluoAnalysis->SetPhysicFlag(newPhysFlag);
87  }
88 }
89 
90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
91 
92 
93 
94 
95 
96 
97 
98 
99 
100 
101 
102 
103 
104 
105 
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
static G4bool GetNewBoolValue(const char *paramString)
void SetDefaultValue(G4bool defVal)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
G4UIcmdWithAString * outputFileCommand
bool G4bool
Definition: G4Types.hh:79
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:239
void SetDefaultValue(const char *defVal)
XrayFluoAnalysisMessenger(XrayFluoAnalysisManager *)
void SetNewValue(G4UIcommand *, G4String)
XrayFluoAnalysisManager * xrayFluoAnalysis