Geant4 Cross Reference |
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 // 27 //--------------------------------------------------------------------------- 28 // 29 // ClassName: G4NeutrinoPhysicsMessenger 30 // 31 // Author: 2023 V. Ivanchenko 32 // 33 // Modified: 34 // 35 //---------------------------------------------------------------------------- 36 // 37 38 #include "G4NeutrinoPhysicsMessenger.hh" 39 #include "G4NeutrinoPhysics.hh" 40 41 G4NeutrinoPhysicsMessenger::G4NeutrinoPhysicsMessenger(G4NeutrinoPhysics* ab) 42 : theB(ab) 43 { 44 // general stuff. 45 aDir = new G4UIdirectory("/physics_lists/nu/", false); 46 aDir->SetGuidance("tailoring the neutrino processes."); 47 48 theNu = new G4UIcmdWithABool("/physics_lists/nu/NeutrinoActivation",this); 49 theNu->SetGuidance("Activation of neutrino-nucleus processes"); 50 theNu->AvailableForStates(G4State_PreInit); 51 theNu->SetToBeBroadcasted(false); 52 53 theNuETX = new G4UIcmdWithABool("/physics_lists/nu/NuETotXscActivation",this); 54 theNuETX->SetGuidance("Activation of neutrino-electron processes"); 55 theNuETX->AvailableForStates(G4State_PreInit); 56 theNuETX->SetToBeBroadcasted(false); 57 58 theNuEleCcBF = new G4UIcmdWithADouble("/physics_lists/nu/NuEleCcBias",this); 59 theNuEleCcBF->SetGuidance("Neutrino-electron charge current bias factor"); 60 theNuEleCcBF->AvailableForStates(G4State_PreInit); 61 theNuEleCcBF->SetToBeBroadcasted(false); 62 63 theNuEleNcBF = new G4UIcmdWithADouble("/physics_lists/nu/NuEleNcBias",this); 64 theNuEleNcBF->SetGuidance("Neutrino-electron neutral current bias factor"); 65 theNuEleNcBF->AvailableForStates(G4State_PreInit); 66 theNuEleNcBF->SetToBeBroadcasted(false); 67 68 theNuNucleusBF = new G4UIcmdWithADouble("/physics_lists/nu/NuNucleusBias",this); 69 theNuNucleusBF->SetGuidance("Neutrino-nucleus cross section bias factor"); 70 theNuNucleusBF->AvailableForStates(G4State_PreInit); 71 theNuNucleusBF->SetToBeBroadcasted(false); 72 73 theNuOscDistanceBF = new G4UIcmdWithADouble("/physics_lists/nu/NuOscDistanceBias",this); 74 theNuOscDistanceBF->SetGuidance("Neutrino-oscillation distance bias factor"); 75 theNuOscDistanceBF->AvailableForStates(G4State_PreInit); 76 theNuOscDistanceBF->SetToBeBroadcasted(false); 77 78 theNuDN = new G4UIcmdWithAString("/physics_lists/nu/NuDetectorName",this); 79 theNuDN->SetGuidance("Set neutrino detector name"); 80 theNuDN->AvailableForStates(G4State_PreInit); 81 theNuDN->SetToBeBroadcasted(false); 82 83 theNuODN = new G4UIcmdWithAString("/physics_lists/nu/NuOscDistanceName",this); 84 theNuODN->SetGuidance("Set neutrino oscillation distance region name"); 85 theNuODN->AvailableForStates(G4State_PreInit); 86 theNuODN->SetToBeBroadcasted(false); 87 } 88 89 G4NeutrinoPhysicsMessenger::~G4NeutrinoPhysicsMessenger() 90 { 91 delete theNu; 92 delete theNuETX; 93 94 delete theNuEleCcBF; 95 delete theNuEleNcBF; 96 delete theNuNucleusBF; 97 delete theNuOscDistanceBF; 98 99 delete theNuDN; 100 delete theNuODN; 101 102 delete aDir; 103 } 104 105 void G4NeutrinoPhysicsMessenger::SetNewValue(G4UIcommand* aComm, G4String aS) 106 { 107 if (aComm==theNuETX) 108 theB->NuETotXscActivated(theNuETX->GetNewBoolValue(aS)); 109 else if (aComm==theNuEleCcBF) 110 theB->SetNuEleCcBias(theNuEleCcBF->GetNewDoubleValue(aS)); 111 else if (aComm==theNuEleNcBF) 112 theB->SetNuEleNcBias(theNuEleNcBF->GetNewDoubleValue(aS)); 113 else if (aComm==theNuNucleusBF) 114 theB->SetNuNucleusBias(theNuNucleusBF->GetNewDoubleValue(aS)); 115 else if (aComm==theNuOscDistanceBF) 116 theB->SetNuOscDistanceBias(theNuOscDistanceBF->GetNewDoubleValue(aS)); 117 else if(aComm==theNuDN) 118 theB->SetNuDetectorName(aS); 119 else if(aComm==theNuODN) 120 theB->SetNuOscDistanceName(aS); 121 } 122