Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // 27 // ------------------------------------------- 24 // -------------------------------------------------------------- 28 // GEANT 4 - Underground Dark Matter Detecto 25 // GEANT 4 - Underground Dark Matter Detector Advanced Example 29 // 26 // 30 // For information related to this code c 27 // For information related to this code contact: Alex Howard 31 // e-mail: alexander.howard@cern.ch << 28 // e-mail: a.s.howard@ic.ac.uk 32 // ------------------------------------------- 29 // -------------------------------------------------------------- 33 // Comments 30 // Comments 34 // 31 // 35 // Underground Advanced 32 // Underground Advanced 36 // by A. Howard and H. Araujo 33 // by A. Howard and H. Araujo 37 // (27th November 2001) 34 // (27th November 2001) 38 // 35 // 39 // SteppingActionMessenger program 36 // SteppingActionMessenger program 40 // ------------------------------------------- 37 // -------------------------------------------------------------- 41 38 42 #include "DMXSteppingActionMessenger.hh" 39 #include "DMXSteppingActionMessenger.hh" 43 40 44 #include "DMXSteppingAction.hh" 41 #include "DMXSteppingAction.hh" 45 #include "DMXEventActionMessenger.hh" 42 #include "DMXEventActionMessenger.hh" 46 43 47 #include "globals.hh" 44 #include "globals.hh" 48 #include "G4UIdirectory.hh" 45 #include "G4UIdirectory.hh" 49 #include "G4UIcmdWithAString.hh" 46 #include "G4UIcmdWithAString.hh" 50 47 51 DMXSteppingActionMessenger::DMXSteppingActionM 48 DMXSteppingActionMessenger::DMXSteppingActionMessenger 52 (DMXSteppingAction* SA):steppingAction(SA) 49 (DMXSteppingAction* SA):steppingAction(SA) { 53 50 54 colourNeutronCmd = new G4UIcmdWithAString("/ 51 colourNeutronCmd = new G4UIcmdWithAString("/dmx/draw/neutronColour",this); 55 colourNeutronCmd->SetGuidance("Colour of neu 52 colourNeutronCmd->SetGuidance("Colour of neutron in the event"); 56 colourNeutronCmd->SetGuidance(" Choice : wh 53 colourNeutronCmd->SetGuidance(" Choice : white, grey, lgrey, black, red, green, blue, cyan, magenta(default), yellow, lgreen, lblue"); 57 colourNeutronCmd->SetParameterName("colourNe 54 colourNeutronCmd->SetParameterName("colourNeutronFlag", false); 58 colourNeutronCmd->SetCandidates("white grey 55 colourNeutronCmd->SetCandidates("white grey lgrey black red green blue cyan magenta yellow lgreen lblue"); 59 colourNeutronCmd->AvailableForStates(G4State 56 colourNeutronCmd->AvailableForStates(G4State_Idle); 60 57 61 colourGammaCmd = new G4UIcmdWithAString("/dm 58 colourGammaCmd = new G4UIcmdWithAString("/dmx/draw/gammaColour",this); 62 colourGammaCmd->SetGuidance("Colour of gamma 59 colourGammaCmd->SetGuidance("Colour of gamma in the event"); 63 colourGammaCmd->SetGuidance(" Choice : whit 60 colourGammaCmd->SetGuidance(" Choice : white, grey, lgrey, black, red, green, blue, cyan(default), magenta, yellow, lgreen, lblue"); 64 colourGammaCmd->SetParameterName("colourGamm 61 colourGammaCmd->SetParameterName("colourGammaFlag", false); 65 colourGammaCmd->SetCandidates("white grey lg 62 colourGammaCmd->SetCandidates("white grey lgrey black red green blue cyan magenta yellow lgreen lblue"); 66 colourGammaCmd->AvailableForStates(G4State_I 63 colourGammaCmd->AvailableForStates(G4State_Idle); 67 64 68 colourOpticalCmd = new G4UIcmdWithAString("/ 65 colourOpticalCmd = new G4UIcmdWithAString("/dmx/draw/opticalColour",this); 69 colourOpticalCmd->SetGuidance("Colour of gam 66 colourOpticalCmd->SetGuidance("Colour of gamma in the event"); 70 colourOpticalCmd->SetGuidance(" Choice : wh 67 colourOpticalCmd->SetGuidance(" Choice : white(default), grey, lgrey, black, red, green, blue, cyan, magenta, yellow, lgreen, lblue"); 71 colourOpticalCmd->SetParameterName("colourOp 68 colourOpticalCmd->SetParameterName("colourOpticalFlag", false); 72 colourOpticalCmd->SetCandidates("white grey 69 colourOpticalCmd->SetCandidates("white grey lgrey black red green blue cyan magenta yellow lgreen lblue"); 73 colourOpticalCmd->AvailableForStates(G4State 70 colourOpticalCmd->AvailableForStates(G4State_Idle); 74 71 75 colourChargedPlusCmd = new G4UIcmdWithAStrin 72 colourChargedPlusCmd = new G4UIcmdWithAString("/dmx/draw/chargedplusColour",this); 76 colourChargedPlusCmd->SetGuidance("colour of 73 colourChargedPlusCmd->SetGuidance("colour of chargedplus in the event"); 77 colourChargedPlusCmd->SetGuidance(" Choice 74 colourChargedPlusCmd->SetGuidance(" Choice : white, grey, lgrey, black, red (default), green, blue, cyan, magenta, yellow, lgreen, lblue"); 78 colourChargedPlusCmd->SetParameterName("Colo 75 colourChargedPlusCmd->SetParameterName("ColourChargedPlusFlag", false); 79 colourChargedPlusCmd->SetCandidates("white g 76 colourChargedPlusCmd->SetCandidates("white grey lgrey black red(default) green blue cyan magenta yellow lgreen lblue"); 80 colourChargedPlusCmd->AvailableForStates(G4S 77 colourChargedPlusCmd->AvailableForStates(G4State_Idle); 81 78 82 colourChargedMinusCmd = new G4UIcmdWithAStri 79 colourChargedMinusCmd = new G4UIcmdWithAString("/dmx/draw/chargedminusColour",this); 83 colourChargedMinusCmd->SetGuidance("colour o 80 colourChargedMinusCmd->SetGuidance("colour of chargedminus in the event"); 84 colourChargedMinusCmd->SetGuidance(" Choice 81 colourChargedMinusCmd->SetGuidance(" Choice : white, grey, lgrey, black, red, green, blue(default), cyan, magenta, yellow, lgreen, lblue"); 85 colourChargedMinusCmd->SetParameterName("col 82 colourChargedMinusCmd->SetParameterName("colourChargedMinusFlag", false); 86 colourChargedMinusCmd->SetCandidates("white 83 colourChargedMinusCmd->SetCandidates("white grey lgrey black red green blue cyan magenta yellow lgreen lblue"); 87 colourChargedMinusCmd->AvailableForStates(G4 84 colourChargedMinusCmd->AvailableForStates(G4State_Idle); 88 85 89 } 86 } 90 87 91 88 92 //ooooooooooooooooooooooooooooooooooooooooo 89 //ooooooooooooooooooooooooooooooooooooooooo 93 DMXSteppingActionMessenger::~DMXSteppingAction 90 DMXSteppingActionMessenger::~DMXSteppingActionMessenger() { 94 91 95 delete colourNeutronCmd; 92 delete colourNeutronCmd; 96 delete colourGammaCmd; 93 delete colourGammaCmd; 97 delete colourOpticalCmd; 94 delete colourOpticalCmd; 98 delete colourChargedPlusCmd; 95 delete colourChargedPlusCmd; 99 delete colourChargedMinusCmd; 96 delete colourChargedMinusCmd; 100 } 97 } 101 98 102 99 103 //ooooooooooooooooooooooooooooooooooooooooo 100 //ooooooooooooooooooooooooooooooooooooooooo 104 void DMXSteppingActionMessenger::SetNewValue(G 101 void DMXSteppingActionMessenger::SetNewValue(G4UIcommand* command, 105 G4String newValue) { 102 G4String newValue) { 106 103 107 if(command == colourNeutronCmd) 104 if(command == colourNeutronCmd) 108 steppingAction->SetColourNeutronFlag(newVa 105 steppingAction->SetColourNeutronFlag(newValue); 109 106 110 if(command == colourGammaCmd) 107 if(command == colourGammaCmd) 111 steppingAction->SetColourGammaFlag(newValu 108 steppingAction->SetColourGammaFlag(newValue); 112 109 113 if(command == colourOpticalCmd) 110 if(command == colourOpticalCmd) 114 steppingAction->SetColourOpticalFlag(newVa 111 steppingAction->SetColourOpticalFlag(newValue); 115 112 116 if(command == colourChargedPlusCmd) 113 if(command == colourChargedPlusCmd) 117 steppingAction->SetColourChargedPlusFlag(n 114 steppingAction->SetColourChargedPlusFlag(newValue); 118 115 119 if(command == colourChargedMinusCmd) 116 if(command == colourChargedMinusCmd) 120 steppingAction->SetColourChargedMinusFlag( 117 steppingAction->SetColourChargedMinusFlag(newValue); 121 118 122 } 119 } 123 120 124 121 125 122 126 123