Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:12

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 // -------------------------------------------------------------------
0027 //
0028 // GEANT4 Class file
0029 //
0030 // File name:     G4EmExtraParametersMessenger
0031 //
0032 // Author:        Vladimir Ivanchenko 
0033 //
0034 // Creation date: 07-05-2019
0035 //
0036 // -------------------------------------------------------------------
0037 //
0038 
0039 // Class Description:
0040 //  This is a messenger class to interface to exchange information
0041 //  between G4VEm and UI.
0042 //
0043 
0044 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
0045 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
0046 
0047 #ifndef G4EmExtraParametersMessenger_h
0048 #define G4EmExtraParametersMessenger_h 1
0049 
0050 #include "globals.hh"
0051 #include "G4UImessenger.hh"
0052 
0053 class G4UIcommand;
0054 class G4UIcmdWithABool;
0055 class G4UIcmdWithAnInteger;
0056 class G4UIcmdWithADouble;
0057 class G4UIcmdWithADoubleAndUnit;
0058 class G4UIcmdWithAString;
0059 class G4UIcmdWith3VectorAndUnit;
0060 class G4EmExtraParameters;
0061 
0062 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
0063 
0064 class G4EmExtraParametersMessenger: public G4UImessenger
0065 {
0066 public:   // with description
0067   
0068   explicit G4EmExtraParametersMessenger(G4EmExtraParameters*);
0069   ~G4EmExtraParametersMessenger() override;
0070 
0071   void SetNewValue(G4UIcommand*, G4String) override;
0072 
0073   G4EmExtraParametersMessenger & operator=
0074   (const G4EmExtraParametersMessenger &right) = delete;
0075   G4EmExtraParametersMessenger(const G4EmExtraParametersMessenger&) = delete;
0076 
0077 private:
0078 
0079   G4EmExtraParameters*       theParameters;
0080 
0081   G4UIcmdWithABool*          dirSplitCmd;
0082   G4UIcmdWithABool*          qeCmd;
0083 
0084   G4UIcmdWithADoubleAndUnit* dirSplitRadiusCmd;
0085 
0086   G4UIcommand*               paiCmd;
0087   G4UIcommand*               mscoCmd;
0088 
0089   G4UIcmdWithAString*        SubSecCmd;
0090   G4UIcommand*               bfCmd;
0091   G4UIcommand*               fiCmd;
0092   G4UIcommand*               bsCmd;
0093   G4UIcommand*               StepFuncCmd;
0094   G4UIcommand*               StepFuncCmd1;
0095   G4UIcommand*               StepFuncCmd2;
0096   G4UIcommand*               StepFuncCmd3;
0097 
0098   G4UIcmdWith3VectorAndUnit* dirSplitTargetCmd;
0099 };
0100 
0101 #endif
0102