Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /* 27 * =========================================== 28 * 29 * Filename: CexmcReconstructorMessenge 30 * 31 * Description: reconstructor messenger 32 * 33 * Version: 1.0 34 * Created: 02.12.2009 15:38:30 35 * Revision: none 36 * Compiler: gcc 37 * 38 * Author: Alexey Radkov (), 39 * Company: PNPI 40 * 41 * =========================================== 42 */ 43 44 #include <G4UIcmdWithABool.hh> 45 #include <G4UIcmdWithAString.hh> 46 #include <G4UIcmdWithADoubleAndUnit.hh> 47 #include "CexmcReconstructorMessenger.hh" 48 #include "CexmcReconstructor.hh" 49 #include "CexmcMessenger.hh" 50 #include "CexmcCommon.hh" 51 52 53 CexmcReconstructorMessenger::CexmcReconstructo 54 CexmcR 55 reconstructor( reconstructor_ ), 56 setCalorimeterEntryPointDefinitionAlgorith 57 setCrystalSelectionAlgorithm( NULL ), useI 58 setCalorimeterEntryPointDepth( NULL ) 59 { 60 setCalorimeterEntryPointDefinitionAlgorith 61 ( CexmcMessenger::reconstructorDirName 62 c_str(), this ); 63 setCalorimeterEntryPointDefinitionAlgorith 64 "\n Algorithm to reconstruct entry 65 "\n decay products in calorimeter" 66 "\n (none of the following algorith 67 " center - entry points defined in 68 " calorimeters,\n" 69 " simple - entry points defined in 70 " that has maximum energy 71 " linear - entry points defined by 72 " deposit in crystals,\n" 73 " sqrt - entry points defined by sq 74 " energy deposit in crystals 75 setCalorimeterEntryPointDefinitionAlgorith 76 "E 77 setCalorimeterEntryPointDefinitionAlgorith 78 "c 79 setCalorimeterEntryPointDefinitionAlgorith 80 setCalorimeterEntryPointDefinitionAlgorith 81 G4 82 83 setCalorimeterEntryPointDepthDefinitionAlg 84 ( CexmcMessenger::reconstructorDirName 85 "entryPointDepth 86 setCalorimeterEntryPointDepthDefinitionAlg 87 "\n Algorithm to reconstruct entry 88 " particle decay products in calori 89 " (value is defined by 'entryPointD 90 " plain - depth is a constant\n" 91 " sphere - depth depends on X and Y 92 " points and locates on su 93 " with origin in the cente 94 " radius of the sphere is 95 " the calorimeter and 'ent 96 setCalorimeterEntryPointDepthDefinitionAlg 97 "EntryPoin 98 setCalorimeterEntryPointDepthDefinitionAlg 99 "plain sph 100 setCalorimeterEntryPointDepthDefinitionAlg 101 "plain" ); 102 setCalorimeterEntryPointDepthDefinitionAlg 103 104 105 setCrystalSelectionAlgorithm = new G4UIcmd 106 ( CexmcMessenger::reconstructorDirName 107 c_str(), this ); 108 setCrystalSelectionAlgorithm->SetGuidance( 109 "\n Choose crystals to be selected 110 " reconstruction algorithms\n" 111 " all - all,\n" 112 " adjacent - crystal with maximum e 113 " adjacent crystals" ); 114 setCrystalSelectionAlgorithm->SetParameter 115 setCrystalSelectionAlgorithm->SetCandidate 116 setCrystalSelectionAlgorithm->SetDefaultVa 117 setCrystalSelectionAlgorithm->AvailableFor 118 119 120 useInnerRefCrystal = new G4UIcmdWithABool( 121 ( CexmcMessenger::reconstructorDirName 122 c_str(), this ); 123 useInnerRefCrystal->SetGuidance( 124 "\n Defines that if the crystal wit 125 " calorimeter is an outer crystal t 126 " will be chosen as the reference f 127 " algorithm and simple entry point 128 " affects energy deposit collection 129 " algorithm was chosen for that. If 130 " crystal will be found from all cr 131 useInnerRefCrystal->SetParameterName( "Use 132 useInnerRefCrystal->SetDefaultValue( true 133 useInnerRefCrystal->AvailableForStates( G4 134 135 setCalorimeterEntryPointDepth = new G4UIcm 136 ( CexmcMessenger::reconstructorDirName 137 this ); 138 setCalorimeterEntryPointDepth->SetGuidance 139 "\n Depth of entry point used in re 140 " between output particle decay pro 141 setCalorimeterEntryPointDepth->SetParamete 142 setCalorimeterEntryPointDepth->SetDefaultV 143 setCalorimeterEntryPointDepth->SetUnitCand 144 setCalorimeterEntryPointDepth->SetDefaultU 145 setCalorimeterEntryPointDepth->AvailableFo 146 147 } 148 149 150 CexmcReconstructorMessenger::~CexmcReconstruct 151 { 152 delete setCalorimeterEntryPointDefinitionA 153 delete setCalorimeterEntryPointDepthDefini 154 delete setCrystalSelectionAlgorithm; 155 delete useInnerRefCrystal; 156 delete setCalorimeterEntryPointDepth; 157 } 158 159 160 void CexmcReconstructorMessenger::SetNewValue 161 162 { 163 do 164 { 165 if ( cmd == setCalorimeterEntryPointDe 166 { 167 CexmcCalorimeterEntryPointDefiniti 168 epDefinitionAlgori 169 do 170 { 171 if ( value == "simple" ) 172 { 173 epDefinitionAlgorithm = 174 CexmcEntryPointInT 175 break; 176 } 177 if ( value == "linear" ) 178 { 179 epDefinitionAlgorithm = Ce 180 break; 181 } 182 if ( value == "sqrt" ) 183 { 184 epDefinitionAlgorithm = Ce 185 break; 186 } 187 } while ( false ); 188 reconstructor->SetCalorimeterEntry 189 190 break; 191 } 192 if ( cmd == setCalorimeterEntryPointDe 193 { 194 CexmcCalorimeterEntryPointDepthDef 195 epDepthDefinitionAlgor 196 do 197 { 198 if ( value == "sphere" ) 199 { 200 epDepthDefinitionAlgorithm 201 break; 202 } 203 } while ( false ); 204 reconstructor->SetCalorimeterEntry 205 206 break; 207 } 208 if ( cmd == setCrystalSelectionAlgorit 209 { 210 CexmcCrystalSelectionAlgorithm 211 csAlgo 212 do 213 { 214 if ( value == "adjacent" ) 215 { 216 csAlgorithm = CexmcSelectA 217 break; 218 } 219 } while ( false ); 220 reconstructor->SetCrystalSelection 221 break; 222 } 223 if ( cmd == useInnerRefCrystal ) 224 { 225 reconstructor->UseInnerRefCrystal( 226 G4UIcmdWithABool::GetN 227 break; 228 } 229 if ( cmd == setCalorimeterEntryPointDe 230 { 231 reconstructor->SetCalorimeterEntry 232 G4UIcmdWithADoubleAndU 233 break; 234 } 235 } while ( false ); 236 } 237 238