ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DetectorConstructionMessenger.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file DetectorConstructionMessenger.cc
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 
28 #include "DetectorConstruction.hh"
29 #include "G4UIdirectory.hh"
31 #include "G4UIcmdWithABool.hh"
32 #include "G4UIcmdWithAString.hh"
34 #include "G4UIcmdWith3Vector.hh"
35 #include "G4UIcmdWithADouble.hh"
36 #include "G4RunManager.hh"
37 
38 #include "G4ios.hh"
39 
43 :fTarget(mpga){
44  fMyXtalDirectory = new G4UIdirectory("/xtal/");
45  fMyXtalDirectory->SetGuidance("Crystal setup control commands.");
46 
47  fXtalMaterialCmd = new G4UIcmdWithAString("/xtal/setMaterial",
48  this);
49  fXtalMaterialCmd->SetGuidance("Set crystal material.");
50  fXtalMaterialCmd->SetParameterName("xMat",true);
52 
53  fXtalSizeCmd = new G4UIcmdWith3VectorAndUnit("/xtal/setSize",this);
54  fXtalSizeCmd->SetGuidance("Set crystal size.");
55  fXtalSizeCmd->SetParameterName("xtalSizeX",
56  "xtalSizeY",
57  "xtalSizeZ",
58  true);
61 
62  fXtalBRCmd = new G4UIcmdWith3VectorAndUnit("/xtal/setBR",this);
63  fXtalBRCmd->SetGuidance("Set crystal bending radius.");
64  fXtalBRCmd->SetParameterName("xtalBRX",
65  "xtalBRY",
66  "xtalBRZ",
67  true);
70 
71  fXtalAngleCmd = new G4UIcmdWith3VectorAndUnit("/xtal/setAngle",this);
72  fXtalAngleCmd->SetGuidance("Set crystal angles.");
73  fXtalAngleCmd->SetParameterName("xtalAngleX",
74  "xtalAngleY",
75  "xtalAngleZ",
76  true);
79 
80  fXtalECCmd = new G4UIcmdWithAString("/xtal/setEC",
81  this);
82  fXtalECCmd->SetGuidance("Set crystal EC.");
83  fXtalECCmd->SetParameterName("xEC",true);
84  fXtalECCmd->SetDefaultValue("data/Si220pl");
85 }
86 
87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
88 
91  delete fXtalMaterialCmd;
92  delete fXtalSizeCmd;
93  delete fXtalAngleCmd;
94  delete fXtalECCmd;
95  delete fXtalBRCmd;
96 }
97 
98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
99 
101  G4UIcommand *command,
102  G4String newValue){
103  if(command==fXtalMaterialCmd ){
104  fTarget->SetMaterial(newValue);
105  }
106  if(command==fXtalSizeCmd ){
108  }
109  if(command==fXtalBRCmd ){
111  }
112  if(command==fXtalAngleCmd ){
114  }
115  if(command==fXtalECCmd ){
116  fTarget->SetEC(newValue);
117  }
118 }
119 
120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
121 
123  G4UIcommand * command){
124  G4String cv;
125 
126  if( command==fXtalMaterialCmd ){
127  cv = fTarget->GetMaterial();
128  }
129  if( command==fXtalSizeCmd ){
131  }
132  if( command==fXtalBRCmd ){
133  cv = fXtalBRCmd->ConvertToString(fTarget->GetBR(),"m");
134  }
135  if( command==fXtalAngleCmd ){
137  }
138  if( command==fXtalECCmd ){
139  cv = fTarget->GetEC();
140  }
141  return cv;
142 }
143 
144 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....