Back to home page

EIC code displayed by LXR

 
 

    


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

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 // File name:     G4NistMessenger
0027 //
0028 // Author:        Vladimir Ivanchenko
0029 //
0030 // Creation date: 23.12.2004
0031 //
0032 // Modifications:
0033 // 29.04.07 V.Ivanchenko add recCmd
0034 //
0035 //
0036 // Class Description:
0037 //  This is a messenger class to interface to exchange information
0038 //  between G4NistManager and UI.
0039 //
0040 //  /material/  directory
0041 //
0042 //   Commands :
0043 //    verbose  val        verbose level for material/element builders
0044 //
0045 //
0046 //  /material/nist/  directory
0047 //
0048 //   Commands :
0049 //    printElement   symbol    output element parameters by symbol
0050 //    printZElement    Z       output element parameters by number
0051 //    listMaterials   key      list of materials (key = simple compound hep)
0052 //
0053 //  /material/g4/  directory
0054 //
0055 //   Commands :
0056 //    printElement   name        output element  parameters
0057 //    printMaterial  name        output material parameters
0058 
0059 #ifndef G4NistMessenger_h
0060 #define G4NistMessenger_h 1
0061 
0062 #include "G4UImessenger.hh"
0063 #include "globals.hh"
0064 
0065 class G4NistManager;
0066 class G4UIdirectory;
0067 class G4UIcmdWithAnInteger;
0068 class G4UIcmdWithAString;
0069 
0070 class G4NistMessenger : public G4UImessenger
0071 {
0072  public:
0073   explicit G4NistMessenger(G4NistManager*);
0074   ~G4NistMessenger() override;
0075 
0076   void SetNewValue(G4UIcommand*, G4String) final;
0077 
0078  private:
0079   G4NistManager* manager;
0080 
0081   G4UIdirectory* matDir;
0082   G4UIcmdWithAnInteger* verCmd;
0083 
0084   G4UIdirectory* nistDir;
0085   G4UIcmdWithAString* prtElmCmd;
0086   G4UIcmdWithAnInteger* przElmCmd;
0087   G4UIcmdWithAString* lisMatCmd;
0088 
0089   G4UIdirectory* g4Dir;
0090   G4UIcmdWithAString* g4ElmCmd;
0091   G4UIcmdWithAString* g4MatCmd;
0092   G4UIcmdWithAString* g4DensCmd;
0093   G4UIcmdWithAString* densCmd;
0094   G4UIcmdWithAString* adensCmd;
0095 };
0096 
0097 #endif