Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4TrackingMessenger class implementation << 26 // >> 27 // $Id: G4TrackingMessenger.cc 77241 2013-11-22 09:55:47Z gcosmo $ >> 28 // >> 29 //--------------------------------------------------------------- >> 30 // >> 31 // G4TrackingMessenger.cc >> 32 // >> 33 // Description: >> 34 // This is a messenger class to interface to exchange information >> 35 // between tracking and stepping managers and UI. 27 // 36 // 28 // Contact: 37 // Contact: 29 // Questions and comments to this code shoul 38 // Questions and comments to this code should be sent to 30 // Katsuya Amako (e-mail: Katsuya.Amako@k 39 // Katsuya Amako (e-mail: Katsuya.Amako@kek.jp) 31 // Makoto Asai (e-mail: asai@slac.stanf << 40 // Makoto Asai (e-mail: asai@kekvax.kek.jp) 32 // Takashi Sasaki (e-mail: Takashi.Sasaki@ 41 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp) 33 // ------------------------------------------- << 42 // >> 43 //--------------------------------------------------------------- 34 44 35 #include "G4TrackingMessenger.hh" 45 #include "G4TrackingMessenger.hh" 36 << 37 #include "G4IdentityTrajectoryFilter.hh" << 38 #include "G4PropagatorInField.hh" << 39 #include "G4SteppingManager.hh" << 40 #include "G4TrackStatus.hh" << 41 #include "G4TrackingManager.hh" << 42 #include "G4TransportationManager.hh" << 43 #include "G4UIcmdWithAnInteger.hh" << 44 #include "G4UIcmdWithoutParameter.hh" << 45 #include "G4UIdirectory.hh" 46 #include "G4UIdirectory.hh" >> 47 #include "G4UIcmdWithoutParameter.hh" >> 48 #include "G4UIcmdWithAnInteger.hh" 46 #include "G4UImanager.hh" 49 #include "G4UImanager.hh" 47 #include "G4Threading.hh" << 48 #include "G4ClonedTrajectory.hh" << 49 #include "G4ClonedTrajectoryPoint.hh" << 50 #include "G4ClonedRichTrajectory.hh" << 51 #include "G4ClonedRichTrajectoryPoint.hh" << 52 #include "G4ClonedSmoothTrajectory.hh" << 53 #include "G4ClonedSmoothTrajectoryPoint.hh" << 54 #include "G4ios.hh" << 55 #include "globals.hh" 50 #include "globals.hh" >> 51 #include "G4TrackingManager.hh" >> 52 #include "G4SteppingManager.hh" >> 53 #include "G4TrackStatus.hh" >> 54 #include "G4ios.hh" >> 55 #include "G4TransportationManager.hh" >> 56 #include "G4PropagatorInField.hh" >> 57 #include "G4IdentityTrajectoryFilter.hh" 56 58 57 ////////////////////////////////////////////// 59 /////////////////////////////////////////////////////////////////// 58 G4TrackingMessenger::G4TrackingMessenger(G4Tra << 60 G4TrackingMessenger::G4TrackingMessenger(G4TrackingManager * trMan) 59 //////////////////////////////////////////// << 61 /////////////////////////////////////////////////////////////////// 60 : trackingManager(trMan) << 62 : trackingManager(trMan) 61 { 63 { 62 steppingManager = trackingManager->GetSteppi 64 steppingManager = trackingManager->GetSteppingManager(); 63 65 64 TrackingDirectory = new G4UIdirectory("/trac 66 TrackingDirectory = new G4UIdirectory("/tracking/"); 65 TrackingDirectory->SetGuidance("TrackingMana 67 TrackingDirectory->SetGuidance("TrackingManager and SteppingManager control commands."); 66 68 67 AbortCmd = new G4UIcmdWithoutParameter("/tra << 69 AbortCmd = new G4UIcmdWithoutParameter("/tracking/abort",this); 68 AbortCmd->SetGuidance("Abort current G4Track 70 AbortCmd->SetGuidance("Abort current G4Track processing."); 69 71 70 ResumeCmd = new G4UIcmdWithoutParameter("/tr << 72 >> 73 ResumeCmd = new G4UIcmdWithoutParameter("/tracking/resume",this); 71 ResumeCmd->SetGuidance("Resume current G4Tra 74 ResumeCmd->SetGuidance("Resume current G4Track processing."); 72 75 73 StoreTrajectoryCmd = new G4UIcmdWithAnIntege << 76 StoreTrajectoryCmd = new G4UIcmdWithAnInteger("/tracking/storeTrajectory",this); 74 StoreTrajectoryCmd->SetGuidance("Store traje 77 StoreTrajectoryCmd->SetGuidance("Store trajectories or not."); 75 StoreTrajectoryCmd->SetGuidance(" 0 : Don't 78 StoreTrajectoryCmd->SetGuidance(" 0 : Don't Store trajectories."); 76 StoreTrajectoryCmd->SetGuidance(" !=0 : Stor 79 StoreTrajectoryCmd->SetGuidance(" !=0 : Store trajectories."); 77 StoreTrajectoryCmd->SetGuidance(" 1 : Choose 80 StoreTrajectoryCmd->SetGuidance(" 1 : Choose G4Trajectory as default."); 78 StoreTrajectoryCmd->SetGuidance(" 2 : Choose 81 StoreTrajectoryCmd->SetGuidance(" 2 : Choose G4SmoothTrajectory as default."); 79 StoreTrajectoryCmd->SetGuidance(" 3 : Choose 82 StoreTrajectoryCmd->SetGuidance(" 3 : Choose G4RichTrajectory as default."); 80 StoreTrajectoryCmd->SetGuidance(" 4 : Choose 83 StoreTrajectoryCmd->SetGuidance(" 4 : Choose G4RichTrajectory with auxiliary points as default."); 81 StoreTrajectoryCmd->SetParameterName("Store" << 84 StoreTrajectoryCmd->SetParameterName("Store",true); 82 StoreTrajectoryCmd->SetDefaultValue(0); 85 StoreTrajectoryCmd->SetDefaultValue(0); 83 StoreTrajectoryCmd->SetRange("Store >=0 && S << 86 StoreTrajectoryCmd->SetRange("Store >=0 && Store <= 4"); 84 87 85 VerboseCmd = new G4UIcmdWithAnInteger("/trac << 88 >> 89 VerboseCmd = new G4UIcmdWithAnInteger("/tracking/verbose",this); 86 #ifdef G4VERBOSE 90 #ifdef G4VERBOSE 87 VerboseCmd->SetGuidance("Set Verbose level o 91 VerboseCmd->SetGuidance("Set Verbose level of tracking category."); 88 VerboseCmd->SetGuidance(" -1 : Silent."); 92 VerboseCmd->SetGuidance(" -1 : Silent."); 89 VerboseCmd->SetGuidance(" 0 : Silent."); 93 VerboseCmd->SetGuidance(" 0 : Silent."); 90 VerboseCmd->SetGuidance(" 1 : Minimum inform << 94 VerboseCmd->SetGuidance(" 1 : Minium information of each Step."); 91 VerboseCmd->SetGuidance(" 2 : Addition to Le 95 VerboseCmd->SetGuidance(" 2 : Addition to Level=1, info of secondary particles."); 92 VerboseCmd->SetGuidance(" 3 : Addition to Le 96 VerboseCmd->SetGuidance(" 3 : Addition to Level=1, pre/postStepoint information"); 93 VerboseCmd->SetGuidance(" after all Alon 97 VerboseCmd->SetGuidance(" after all AlongStep/PostStep process executions."); 94 VerboseCmd->SetGuidance(" 4 : Addition to Le 98 VerboseCmd->SetGuidance(" 4 : Addition to Level=3, pre/postStepoint information"); 95 VerboseCmd->SetGuidance(" at each AlongS << 99 VerboseCmd->SetGuidance(" at each AlongStepPostStep process execuation."); 96 VerboseCmd->SetGuidance(" 5 : Addition to Le 100 VerboseCmd->SetGuidance(" 5 : Addition to Level=4, proposed Step length information"); 97 VerboseCmd->SetGuidance(" from each Alon << 101 VerboseCmd->SetGuidance(" from each AlongStepPostStep process."); 98 VerboseCmd->SetParameterName("verbose_level" << 102 VerboseCmd->SetParameterName("verbose_level",true); 99 VerboseCmd->SetDefaultValue(0); 103 VerboseCmd->SetDefaultValue(0); 100 VerboseCmd->SetRange("verbose_level >=-1 ") 104 VerboseCmd->SetRange("verbose_level >=-1 "); 101 #else << 105 #else 102 VerboseCmd->SetGuidance("You need to recompi << 106 VerboseCmd->SetGuidance("You need to recompile the tracking category defining G4VERBOSE "); 103 #endif 107 #endif 104 } 108 } 105 109 106 //////////////////////////////////////////// 110 //////////////////////////////////////////// 107 G4TrackingMessenger::~G4TrackingMessenger() 111 G4TrackingMessenger::~G4TrackingMessenger() 108 //////////////////////////////////////////// 112 //////////////////////////////////////////// 109 { 113 { 110 delete TrackingDirectory; 114 delete TrackingDirectory; 111 delete AbortCmd; 115 delete AbortCmd; 112 delete ResumeCmd; 116 delete ResumeCmd; 113 delete StoreTrajectoryCmd; 117 delete StoreTrajectoryCmd; 114 delete VerboseCmd; 118 delete VerboseCmd; 115 delete auxiliaryPointsFilter; << 116 } 119 } 117 120 118 ////////////////////////////////////////////// 121 /////////////////////////////////////////////////////////////////////////////// 119 void G4TrackingMessenger::SetNewValue(G4UIcomm << 122 void G4TrackingMessenger::SetNewValue(G4UIcommand * command,G4String newValues) 120 ////////////////////////////////////////////// 123 /////////////////////////////////////////////////////////////////////////////// 121 { 124 { 122 if (command == VerboseCmd) { << 125 if( command == VerboseCmd ){ 123 trackingManager->SetVerboseLevel(VerboseCm 126 trackingManager->SetVerboseLevel(VerboseCmd->ConvertToInt(newValues)); 124 } 127 } 125 128 126 if (command == AbortCmd) { << 129 if( command == AbortCmd ){ 127 steppingManager->GetTrack()->SetTrackStatu 130 steppingManager->GetTrack()->SetTrackStatus(fStopAndKill); 128 G4UImanager::GetUIpointer()->ApplyCommand( 131 G4UImanager::GetUIpointer()->ApplyCommand("/control/exit"); 129 } 132 } 130 133 131 if (command == ResumeCmd) { << 134 if( command == ResumeCmd ){ 132 G4UImanager::GetUIpointer()->ApplyCommand( << 135 G4UImanager::GetUIpointer()->ApplyCommand("/control/exit"); 133 } 136 } 134 137 135 if (command == StoreTrajectoryCmd) { << 138 static G4ThreadLocal G4IdentityTrajectoryFilter* auxiliaryPointsFilter = 0; >> 139 if(!auxiliaryPointsFilter) auxiliaryPointsFilter = new G4IdentityTrajectoryFilter; >> 140 if( command == StoreTrajectoryCmd ){ 136 G4int trajType = StoreTrajectoryCmd->Conve 141 G4int trajType = StoreTrajectoryCmd->ConvertToInt(newValues); 137 if (trajType == 2 || trajType == 4) { << 142 if(trajType==2||trajType==4) 138 << 143 { 139 if (nullptr == auxiliaryPointsFilter) { << 140 auxiliaryPointsFilter = new G4IdentityTrajec << 141 } << 142 G4TransportationManager::GetTransportati 144 G4TransportationManager::GetTransportationManager() 143 ->GetPropagatorInField() << 145 ->GetPropagatorInField()->SetTrajectoryFilter(auxiliaryPointsFilter); 144 ->SetTrajectoryFilter(auxiliaryPointsF << 145 } 146 } 146 else { << 147 else >> 148 { 147 G4TransportationManager::GetTransportati 149 G4TransportationManager::GetTransportationManager() 148 ->GetPropagatorInField() << 150 ->GetPropagatorInField()->SetTrajectoryFilter(0); 149 ->SetTrajectoryFilter(nullptr); << 150 } 151 } 151 trackingManager->SetStoreTrajectory(trajTy 152 trackingManager->SetStoreTrajectory(trajType); 152 << 153 // Make sure cloning works for sub-event p << 154 if(G4Threading::IsMasterThread() && trajTy << 155 static G4bool traj_1 = false, traj_2 = f << 156 G4VTrajectory* traj = nullptr; << 157 G4VTrajectoryPoint* trajp = nullptr; << 158 switch (trajType) { << 159 case 1: << 160 if(!traj_1) { << 161 traj = new G4ClonedTrajectory(); << 162 trajp = new G4ClonedTrajectoryPoint( << 163 traj_1 = true; << 164 } << 165 break; << 166 case 2: << 167 if(!traj_2) { << 168 traj = new G4ClonedSmoothTrajectory( << 169 trajp = new G4ClonedSmoothTrajectory << 170 traj_2 = true; << 171 } << 172 break; << 173 case 3: << 174 case 4: << 175 if(!traj_3) { << 176 traj = new G4ClonedRichTrajectory(); << 177 trajp = new G4ClonedRichTrajectoryPo << 178 traj_3 = true; << 179 } << 180 break; << 181 default: << 182 break; << 183 } << 184 if(traj!=nullptr) delete traj; << 185 if(trajp!=nullptr) delete trajp; << 186 } << 187 } 153 } 188 << 189 } 154 } 190 155 >> 156 191 ////////////////////////////////////////////// 157 //////////////////////////////////////////////////////////////////// 192 G4String G4TrackingMessenger::GetCurrentValue( << 158 G4String G4TrackingMessenger::GetCurrentValue(G4UIcommand * command) 193 ////////////////////////////////////////////// 159 //////////////////////////////////////////////////////////////////// 194 { 160 { 195 if (command == VerboseCmd) { << 161 if( command == VerboseCmd ){ 196 return VerboseCmd->ConvertToString(trackin 162 return VerboseCmd->ConvertToString(trackingManager->GetVerboseLevel()); 197 } 163 } 198 if (command == StoreTrajectoryCmd) { << 164 else if( command == StoreTrajectoryCmd ){ 199 return StoreTrajectoryCmd->ConvertToString 165 return StoreTrajectoryCmd->ConvertToString(trackingManager->GetStoreTrajectory()); 200 } 166 } 201 return G4String(1, '\0'); << 167 return G4String('\0'); 202 } 168 } >> 169 >> 170 >> 171 >> 172 >> 173 >> 174 >> 175 >> 176 >> 177 >> 178 >> 179 >> 180 >> 181 203 182