Back to home page

EIC code displayed by LXR

 
 

    


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

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 // class G4GeometryMessenger
0027 //
0028 // Class description:
0029 //
0030 // A messenger defining commands for debugging, verifying
0031 // and controlling the detector geometry and navigation.
0032 
0033 // Author: G.Cosmo, CERN.
0034 // --------------------------------------------------------------------
0035 #ifndef G4GeometryMessenger_hh
0036 #define G4GeometryMessenger_hh
0037 
0038 #include "G4Types.hh"
0039 #include "G4UImessenger.hh"
0040 #include "G4ThreeVector.hh"
0041 
0042 class G4UIdirectory;
0043 class G4UIcommand;
0044 class G4UIcmdWithoutParameter;
0045 class G4UIcmdWithABool;
0046 class G4UIcmdWithAnInteger;
0047 class G4UIcmdWithADoubleAndUnit;
0048 class G4TransportationManager;
0049 class G4GeomTestVolume;
0050 
0051 #include <vector>
0052 
0053 class G4GeometryMessenger : public G4UImessenger
0054 {
0055   public:  // with description
0056 
0057     G4GeometryMessenger(G4TransportationManager* tman);
0058     ~G4GeometryMessenger() override;
0059       // Constructor and destructor
0060 
0061     void SetNewValue( G4UIcommand* command, G4String newValues ) override;
0062     G4String GetCurrentValue( G4UIcommand* command ) override;
0063   
0064   private:
0065 
0066     void Init();
0067     void CheckGeometry();
0068     void ResetNavigator();
0069     void SetVerbosity(const G4String& newValue);
0070     void SetCheckMode(const G4String& newValue);
0071     void SetPushFlag(const G4String& newValue);
0072     void RecursiveOverlapTest();
0073 
0074     G4UIdirectory             *geodir, *navdir, *testdir;
0075     G4UIcmdWithABool          *chkCmd, *pchkCmd, *verCmd, *parCmd;
0076     G4UIcmdWithoutParameter   *recCmd, *resCmd;
0077     G4UIcmdWithADoubleAndUnit *tolCmd;
0078     G4UIcmdWithAnInteger      *verbCmd, *rslCmd, *rcsCmd, *rcdCmd, *errCmd;
0079 
0080     G4double tol = 0.0;
0081     G4int recLevel = 0, recDepth = -1;
0082     G4bool checkParallelWorlds = false;
0083 
0084     G4TransportationManager* tmanager;
0085     std::vector<G4GeomTestVolume*> tvolumes{};
0086 };
0087 
0088 #endif