Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eventgenerator/HepMC/HepMCEx01/src/ExN04StackingActionMessenger.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 /// \file eventgenerator/HepMC/HepMCEx01/src/ExN04StackingActionMessenger.cc
27 /// \brief Implementation of the ExN04StackingActionMessenger class
28 //
29 // $Id: ExN04StackingActionMessenger.cc 77801 2013-11-28 13:33:20Z gcosmo $
30 //
31 
32 #include "ExN04StackingActionMessenger.hh"
33 #include "ExN04StackingAction.hh"
34 #include "G4UIcmdWithAnInteger.hh"
36 #include "G4ios.hh"
37 
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41  : myAction(msa)
42 {
43  muonCmd = new G4UIcmdWithAnInteger("/mydet/reqmuon",this);
44  muonCmd->SetGuidance("Number of muon for the trigger.");
45  muonCmd->SetParameterName("N",true);
46  muonCmd->SetDefaultValue(2);
47  muonCmd->SetRange("N>=0");
48 
49  isomuonCmd = new G4UIcmdWithAnInteger("/mydet/isomuon",this);
50  isomuonCmd->SetGuidance("Number of isolated muon for the trigger.");
51  isomuonCmd->SetParameterName("N",true);
52  isomuonCmd->SetDefaultValue(2);
53  isomuonCmd->SetRange("N>=0");
54 
55  isoCmd = new G4UIcmdWithAnInteger("/mydet/isolation",this);
56  isoCmd->SetGuidance("Maximum allowed number of hits in tracker");
57  isoCmd->SetGuidance(" for an isolated muon track (includes hits by muon)");
58  isoCmd->SetParameterName("N",true);
59  isoCmd->SetDefaultValue(10);
60  isoCmd->SetRange("N>=0");
61 
62  roiCmd = new G4UIcmdWithADoubleAndUnit("/mydet/RoIangle",this);
63  roiCmd->SetGuidance("Define RoI angle");
64  roiCmd->SetParameterName("theta",true,true);
65  roiCmd->SetDefaultUnit("deg");
66 }
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 {
71  delete muonCmd;
72  delete isomuonCmd;
73  delete isoCmd;
74  delete roiCmd;
75 }
76 
77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
79  (G4UIcommand * command,G4String newValue)
80 {
81  if( command==muonCmd )
82  { myAction->SetNRequestMuon(muonCmd->GetNewIntValue(newValue)); }
83  else if( command==isomuonCmd )
84  { myAction->SetNRequestIsoMuon(isomuonCmd->GetNewIntValue(newValue)); }
85  else if( command==isoCmd )
86  { myAction->SetNIsolation(isoCmd->GetNewIntValue(newValue)); }
87  else if( command==roiCmd )
88  { myAction->SetRoIAngle(roiCmd->GetNewDoubleValue(newValue)); }
89 }
90 
91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
93 {
94  G4String cv;
95 
96  if( command==muonCmd )
97  { cv = muonCmd->ConvertToString(myAction->GetNRequestMuon()); }
98  else if( command==isomuonCmd )
99  { cv = isomuonCmd->ConvertToString(myAction->GetNRequestIsoMuon()); }
100  else if( command==isoCmd )
101  { cv = isoCmd->ConvertToString(myAction->GetNIsolation()); }
102  else if( command==roiCmd )
103  { cv = roiCmd->ConvertToString(myAction->GetRoIAngle(),"deg"); }
104 
105  return cv;
106 }
static G4String ConvertToString(G4bool boolVal)
Definition: G4UIcommand.cc:357