Back to home page

EIC code displayed by LXR

 
 

    


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

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:     G4EmLowEParametersMessenger
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 G4EmLowEParametersMessenger_h
0048 #define G4EmLowEParametersMessenger_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 G4EmLowEParameters;
0061 
0062 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
0063 
0064 class G4EmLowEParametersMessenger: public G4UImessenger
0065 {
0066 public:   // with description
0067   
0068   explicit G4EmLowEParametersMessenger(G4EmLowEParameters*);
0069   ~G4EmLowEParametersMessenger() override;
0070 
0071   void SetNewValue(G4UIcommand*, G4String) override;
0072 
0073   G4EmLowEParametersMessenger & operator=
0074   (const G4EmLowEParametersMessenger &right) = delete;
0075   G4EmLowEParametersMessenger(const G4EmLowEParametersMessenger&) = delete;
0076 
0077 private:
0078 
0079   G4EmLowEParameters*        theParameters;
0080 
0081   G4UIcmdWithABool*          deCmd;
0082   G4UIcmdWithABool*          dirFluoCmd;
0083   G4UIcmdWithABool*          dirFluoCmd1;
0084   G4UIcmdWithABool*          auCmd;
0085   G4UIcmdWithABool*          auCascadeCmd;
0086   G4UIcmdWithABool*          pixeCmd;
0087   G4UIcmdWithABool*          dcutCmd;
0088   G4UIcmdWithABool*          dnafCmd;
0089   G4UIcmdWithABool*          dnasCmd;
0090   G4UIcmdWithABool*          dnamscCmd;
0091 
0092   G4UIcmdWithAString*        pixeXsCmd;
0093   G4UIcmdWithAString*        pixeeXsCmd;
0094   G4UIcmdWithAString*        livCmd;
0095   G4UIcmdWithAString*        dnaSolCmd;
0096   G4UIcmdWithAString*        direFluoCmd;
0097 
0098   G4UIcmdWithAString*        meCmd;
0099   G4UIcommand*               dnaCmd;
0100   G4UIcommand*               deexCmd;
0101 };
0102 
0103 #endif
0104