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 /// \file field/BlineTracer/src/G4BlineTracerM << 27 /// \brief Implementation of the G4BlineTracer << 28 // << 29 // 26 // >> 27 // $Id: G4BlineTracerMessenger.cc,v 1.2 2006/06/29 17:15:18 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-01-patch-01 $ 30 // 29 // 31 // ------------------------------------------- 30 // -------------------------------------------------------------------- 32 // 31 // 33 // G4BlineTracerMessenger implementation 32 // G4BlineTracerMessenger implementation 34 // 33 // 35 // ------------------------------------------- 34 // -------------------------------------------------------------------- 36 // Author: Laurent Desorgher (desorgher@phim.u 35 // Author: Laurent Desorgher (desorgher@phim.unibe.ch) 37 // Created - 2003-10-06 36 // Created - 2003-10-06 38 // ------------------------------------------- 37 // -------------------------------------------------------------------- 39 38 40 #include "G4BlineTracerMessenger.hh" 39 #include "G4BlineTracerMessenger.hh" 41 << 42 #include "G4BlineEventAction.hh" << 43 #include "G4BlineTracer.hh" 40 #include "G4BlineTracer.hh" 44 #include "G4UIcmdWith3Vector.hh" << 41 #include "G4BlineEventAction.hh" 45 #include "G4UIcmdWithABool.hh" << 42 >> 43 #include "G4UImessenger.hh" >> 44 #include "G4UIdirectory.hh" >> 45 #include "G4UIcommand.hh" 46 #include "G4UIcmdWithADouble.hh" 46 #include "G4UIcmdWithADouble.hh" 47 #include "G4UIcmdWithADoubleAndUnit.hh" 47 #include "G4UIcmdWithADoubleAndUnit.hh" 48 #include "G4UIcmdWithAnInteger.hh" 48 #include "G4UIcmdWithAnInteger.hh" 49 #include "G4UIcmdWithoutParameter.hh" 49 #include "G4UIcmdWithoutParameter.hh" 50 #include "G4UIcommand.hh" << 50 #include "G4UIcmdWith3Vector.hh" 51 #include "G4UIdirectory.hh" << 51 #include "G4UIcmdWithABool.hh" 52 #include "G4UImessenger.hh" << 53 52 54 //....oooOO0OOooo........oooOO0OOooo........oo << 53 /////////////////////////////////////////////////////////////////////////// 55 54 56 G4BlineTracerMessenger::G4BlineTracerMessenger << 55 G4BlineTracerMessenger::G4BlineTracerMessenger( G4BlineTracer* aBlineTool ) 57 : fTheBlineTool(aBlineTool) << 58 { 56 { 59 fBlineToolDir = new G4UIdirectory("/vis/blin << 57 theBlineTool = aBlineTool; 60 fBlineToolDir->SetGuidance("Commands to trac << 58 BlineToolDir = new G4UIdirectory("/vis/blineTracer/"); 61 fBlineToolDir->SetGuidance("These commands w << 59 BlineToolDir->SetGuidance("Commands to trace and visualise magnetic field lines."); 62 fBlineToolDir->SetGuidance("in the applicati << 60 BlineToolDir->SetGuidance("These commands work only if a magnetic-field is set"); >> 61 BlineToolDir->SetGuidance("in the application."); 63 62 64 // commands 63 // commands 65 64 66 fBlineCmd = new G4UIcmdWithAnInteger("/vis/b << 65 BlineCmd = new G4UIcmdWithAnInteger("/vis/blineTracer/computeBline",this); 67 fBlineCmd->SetGuidance("Compute magnetic fie << 66 BlineCmd->SetGuidance("Compute magnetic field lines for visualisation."); 68 fBlineCmd->SetParameterName("nb_of_lines", f << 67 BlineCmd->SetParameterName("nb_of_lines",false); 69 fBlineCmd->AvailableForStates(G4State_PreIni << 68 BlineCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 70 << 69 71 fSetMaxTrackingStepCmd = new G4UIcmdWithADou << 70 SetMaxTrackingStepCmd = 72 fSetMaxTrackingStepCmd->SetGuidance("Set the << 71 new G4UIcmdWithADoubleAndUnit("/vis/blineTracer/setMaxStepLength",this); 73 fSetMaxTrackingStepCmd->SetGuidance("when in << 72 SetMaxTrackingStepCmd->SetGuidance("Set the maximum length of tracking step"); 74 fSetMaxTrackingStepCmd->AvailableForStates(G << 73 SetMaxTrackingStepCmd->SetGuidance("when integrating magnetic field line."); 75 << 74 SetMaxTrackingStepCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 76 fSetDrawColourCmd = new G4UIcmdWith3Vector(" << 75 77 fSetDrawColourCmd->SetGuidance("Set the colo << 76 SetDrawColourCmd = new G4UIcmdWith3Vector("/vis/blineTracer/setColour",this); 78 fSetDrawColourCmd->SetGuidance("and magnetic << 77 SetDrawColourCmd->SetGuidance("Set the colour drawing trajectories"); 79 fSetDrawColourCmd->AvailableForStates(G4Stat << 78 SetDrawColourCmd->SetGuidance("and magnetic field lines."); 80 << 79 SetDrawColourCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 81 fSetDrawBlineCmd = new G4UIcmdWithABool("/vi << 80 82 fSetDrawBlineCmd->SetGuidance("If true field << 81 SetDrawBlineCmd = new G4UIcmdWithABool("/vis/blineTracer/stockLines",this); 83 fSetDrawBlineCmd->SetGuidance("to be drawn." << 82 SetDrawBlineCmd->SetGuidance("If true field lines are stocked in lines"); 84 fSetDrawBlineCmd->SetParameterName("StockLin << 83 SetDrawBlineCmd->SetGuidance("to be drawn."); 85 fSetDrawBlineCmd->AvailableForStates(G4State << 84 SetDrawBlineCmd->SetParameterName("StockLines",false); 86 << 85 SetDrawBlineCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 87 fSetDrawPointsCmd = new G4UIcmdWithABool("/v << 86 88 fSetDrawPointsCmd->SetGuidance("If true step << 87 SetDrawPointsCmd = new G4UIcmdWithABool("/vis/blineTracer/stockPoints",this); 89 fSetDrawPointsCmd->SetGuidance("in vector of << 88 SetDrawPointsCmd->SetGuidance("If true step field line points are stocked"); 90 fSetDrawPointsCmd->SetParameterName("StockPo << 89 SetDrawPointsCmd->SetGuidance("in vector of points to be drawn."); 91 fSetDrawPointsCmd->AvailableForStates(G4Stat << 90 SetDrawPointsCmd->SetParameterName("StockPoints",false); 92 << 91 SetDrawPointsCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 93 fSetPointSizeCmd = new G4UIcmdWithADouble("/ << 92 94 fSetPointSizeCmd->SetGuidance("Set the size << 93 SetPointSizeCmd = new G4UIcmdWithADouble("/vis/blineTracer/setPointSize",this); 95 fSetPointSizeCmd->SetParameterName("StepSize << 94 SetPointSizeCmd->SetGuidance("Set the size of points for drawing."); 96 fSetPointSizeCmd->AvailableForStates(G4State << 95 SetPointSizeCmd->SetParameterName("StepSize",false); 97 << 96 SetPointSizeCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 98 fDrawCmd = new G4UIcmdWithoutParameter("/vis << 97 99 fDrawCmd->SetGuidance("Show the stored magne << 98 DrawCmd = new G4UIcmdWithoutParameter("/vis/blineTracer/show",this); 100 fDrawCmd->AvailableForStates(G4State_PreInit << 99 DrawCmd->SetGuidance("Show the stored magnetic field lines."); 101 << 100 DrawCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 102 fResetCmd = new G4UIcmdWithoutParameter("/vi << 101 103 fResetCmd->SetGuidance("Clear the vectors of << 102 ResetCmd = 104 fResetCmd->AvailableForStates(G4State_PreIni << 103 new G4UIcmdWithoutParameter("/vis/blineTracer/resetMaterialToBeDrawn",this); >> 104 ResetCmd->SetGuidance("Clear the vectors of lines and points to be drawn."); >> 105 ResetCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 105 } 106 } 106 107 107 //....oooOO0OOooo........oooOO0OOooo........oo << 108 /////////////////////////////////////////////////////////////////////////// 108 109 109 G4BlineTracerMessenger::~G4BlineTracerMessenge 110 G4BlineTracerMessenger::~G4BlineTracerMessenger() 110 { 111 { 111 delete fResetCmd; << 112 delete ResetCmd; 112 delete fDrawCmd; << 113 delete DrawCmd; 113 delete fSetPointSizeCmd; << 114 delete SetPointSizeCmd; 114 delete fSetDrawPointsCmd; << 115 delete SetDrawPointsCmd; 115 delete fSetDrawBlineCmd; << 116 delete SetDrawBlineCmd; 116 delete fSetDrawColourCmd; << 117 delete SetDrawColourCmd; 117 delete fSetMaxTrackingStepCmd; << 118 delete SetMaxTrackingStepCmd; 118 delete fBlineCmd; << 119 delete BlineCmd; 119 delete fBlineToolDir; << 120 delete BlineToolDir; 120 } << 121 } 121 << 122 122 //....oooOO0OOooo........oooOO0OOooo........oo << 123 /////////////////////////////////////////////////////////////////////////// 123 << 124 124 void G4BlineTracerMessenger::SetNewValue(G4UIc << 125 void G4BlineTracerMessenger::SetNewValue( G4UIcommand * command, 125 { << 126 G4String newValues ) 126 if (command == fBlineCmd) << 127 { 127 fTheBlineTool->ComputeBlines(1); << 128 if (command == BlineCmd) 128 else if (command == fSetMaxTrackingStepCmd) << 129 theBlineTool->ComputeBlines(1); 129 fTheBlineTool->SetMaxTrackingStep(fSetMaxT << 130 else if( command == SetMaxTrackingStepCmd ) 130 else if (command == fSetDrawBlineCmd) << 131 theBlineTool->SetMaxTrackingStep(SetMaxTrackingStepCmd 131 fTheBlineTool->GetEventAction()->SetDrawBl << 132 ->GetNewDoubleValue(newValues)); 132 else if (command == fSetDrawColourCmd) { << 133 else if( command == SetDrawBlineCmd ) 133 G4ThreeVector vec = fSetDrawColourCmd->Get << 134 theBlineTool->GetEventAction()->SetDrawBline(SetDrawBlineCmd 134 fTheBlineTool->GetEventAction()->SetDrawCo << 135 ->GetNewBoolValue(newValues)); >> 136 else if( command == SetDrawColourCmd ) >> 137 { >> 138 G4ThreeVector vec=SetDrawColourCmd->GetNew3VectorValue(newValues); >> 139 theBlineTool->GetEventAction()-> >> 140 SetDrawColour(G4Colour(vec.x(),vec.y(),vec.z())); 135 } 141 } 136 else if (command == fSetDrawPointsCmd) << 142 else if( command == SetDrawPointsCmd ) 137 fTheBlineTool->GetEventAction()->SetDrawPo << 143 theBlineTool->GetEventAction()->SetDrawPoints(SetDrawPointsCmd 138 else if (command == fSetPointSizeCmd) << 144 ->GetNewBoolValue(newValues)); 139 fTheBlineTool->GetEventAction()->SetPointS << 145 else if( command == SetPointSizeCmd ) 140 else if (command == fDrawCmd) << 146 theBlineTool->GetEventAction()->SetPointSize(SetPointSizeCmd 141 fTheBlineTool->GetEventAction()->DrawField << 147 ->GetNewDoubleValue(newValues)); 142 else if (command == fResetCmd) << 148 else if( command == DrawCmd ) 143 fTheBlineTool->GetEventAction()->ResetVect << 149 theBlineTool->GetEventAction()->DrawFieldLines(.5,45.,45.); >> 150 else if( command == ResetCmd ) >> 151 theBlineTool->GetEventAction()->ResetVectorObjectToBeDrawn(); 144 } 152 } 145 153