Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-15 08:58:33

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:     G4EmParametersMessenger
0031 //
0032 // Author:        Vladimir Ivanchenko created from G4EnergyLossMessenger
0033 //
0034 // Creation date: 22-05-2013
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 G4EmParametersMessenger_h
0048 #define G4EmParametersMessenger_h 1
0049 
0050 #include "globals.hh"
0051 #include "G4UImessenger.hh"
0052 
0053 class G4UIdirectory;
0054 class G4UIcommand;
0055 class G4UIcmdWithABool;
0056 class G4UIcmdWithAnInteger;
0057 class G4UIcmdWithADouble;
0058 class G4UIcmdWithADoubleAndUnit;
0059 class G4UIcmdWithAString;
0060 class G4UIcmdWith3VectorAndUnit;
0061 class G4EmParameters;
0062 
0063 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
0064 
0065 class G4EmParametersMessenger: public G4UImessenger
0066 {
0067 public:   // with description
0068   
0069   explicit G4EmParametersMessenger(G4EmParameters*);
0070   ~G4EmParametersMessenger() override;
0071 
0072   void SetNewValue(G4UIcommand*, G4String) override;
0073 
0074   G4EmParametersMessenger & operator=
0075   (const G4EmParametersMessenger &right) = delete;
0076   G4EmParametersMessenger(const G4EmParametersMessenger&) = delete;
0077 
0078 private:
0079 
0080   G4EmParameters* theParameters;
0081 
0082   G4UIdirectory* gconvDirectory;
0083   G4UIdirectory* eLossDirectory;
0084   G4UIdirectory* mscDirectory;
0085   G4UIdirectory* emDirectory;
0086   G4UIdirectory* dnaDirectory;
0087 
0088   G4UIcmdWithABool* flucCmd;
0089   G4UIcmdWithABool* intCmd;
0090   G4UIcmdWithABool* rangeCmd;
0091   G4UIcmdWithABool* lpmCmd;
0092   G4UIcmdWithABool* rsCmd;
0093   G4UIcmdWithABool* aplCmd;
0094   G4UIcmdWithABool* latCmd;
0095   G4UIcmdWithABool* lat96Cmd;
0096   G4UIcmdWithABool* mulatCmd;
0097   G4UIcmdWithABool* delCmd;
0098   G4UIcmdWithABool* mottCmd;
0099   G4UIcmdWithABool* birksCmd;
0100   G4UIcmdWithABool* sharkCmd;
0101   G4UIcmdWithABool* poCmd;
0102   G4UIcmdWithABool* onIsolatedCmd;
0103   G4UIcmdWithABool* sampleTCmd;
0104   G4UIcmdWithABool* icru90Cmd;
0105   G4UIcmdWithABool* mudatCmd;
0106   G4UIcmdWithABool* peKCmd;
0107   G4UIcmdWithABool* mscPCmd;
0108   G4UIcmdWithABool* pepicsCmd;
0109   G4UIcmdWithABool* f3gCmd;
0110 
0111   G4UIcmdWithADoubleAndUnit* minEnCmd;
0112   G4UIcmdWithADoubleAndUnit* maxEnCmd;
0113   G4UIcmdWithADoubleAndUnit* max5DCmd;
0114   G4UIcmdWithADoubleAndUnit* cenCmd;
0115   G4UIcmdWithADoubleAndUnit* lowEnCmd;
0116   G4UIcmdWithADoubleAndUnit* lowEn3Cmd;
0117   G4UIcmdWithADoubleAndUnit* lowhEnCmd;
0118   G4UIcmdWithADouble*        lllCmd;
0119   G4UIcmdWithADoubleAndUnit* brCmd;
0120   G4UIcmdWithADoubleAndUnit* br1Cmd;
0121   G4UIcmdWithADouble*        labCmd;
0122   G4UIcmdWithADouble*        mscfCmd;
0123   G4UIcmdWithADoubleAndUnit* angCmd;
0124   G4UIcmdWithADoubleAndUnit* msceCmd;
0125   G4UIcmdWithADoubleAndUnit* nielCmd;
0126   G4UIcmdWithADouble*        frCmd;
0127   G4UIcmdWithADouble*        fr1Cmd;
0128   G4UIcmdWithADouble*        fgCmd;
0129   G4UIcmdWithADouble*        safCmd;
0130   G4UIcmdWithADoubleAndUnit* llimCmd;
0131   G4UIcmdWithADouble*        skinCmd;
0132   G4UIcmdWithADouble*        screCmd;
0133 
0134   G4UIcmdWithAnInteger*      amCmd;
0135   G4UIcmdWithAnInteger*      verCmd;
0136   G4UIcmdWithAnInteger*      ver1Cmd;
0137   G4UIcmdWithAnInteger*      ver2Cmd;
0138   G4UIcmdWithAnInteger*      nFreeCmd;
0139   G4UIcmdWithAnInteger*      tripletCmd;
0140 
0141   G4UIcmdWithAString*        transWithMscCmd;
0142   G4UIcmdWithAString*        mscCmd;
0143   G4UIcmdWithAString*        msc1Cmd;
0144   G4UIcmdWithAString*        nffCmd;
0145   G4UIcmdWithAString*        ssCmd;
0146   G4UIcmdWithAString*        fluc1Cmd;
0147   G4UIcmdWithAString*        posiCmd;
0148 
0149   G4UIcommand*               dumpCmd;
0150 
0151 };
0152 
0153 #endif
0154