Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-19 09:21: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 // 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: Gabriele Cosmo (CERN), 24 October 2001.
0034 // --------------------------------------------------------------------
0035 #ifndef G4GeometryMessenger_hh
0036 #define G4GeometryMessenger_hh 1
0037 
0038 #include "G4Types.hh"
0039 #include "G4UImessenger.hh"
0040 #include "G4ThreeVector.hh"
0041 
0042 #include <vector>
0043 
0044 class G4UIdirectory;
0045 class G4UIcommand;
0046 class G4UIcmdWithoutParameter;
0047 class G4UIcmdWithABool;
0048 class G4UIcmdWithAnInteger;
0049 class G4UIcmdWithADoubleAndUnit;
0050 class G4UIcmdWithAString;
0051 class G4TransportationManager;
0052 class G4GeomTestVolume;
0053 
0054 /**
0055  * @brief G4GeometryMessenger is a messenger defining commands for debugging,
0056  * verifying and controlling the detector geometry and navigation.
0057  */
0058 
0059 class G4GeometryMessenger : public G4UImessenger
0060 {
0061   public:
0062 
0063     /**
0064      * Constructor and Destructor.
0065      */
0066     G4GeometryMessenger(G4TransportationManager* tman);
0067     ~G4GeometryMessenger() override;
0068 
0069     /**
0070      * Sets/gets values for UI command.
0071      */
0072     void SetNewValue( G4UIcommand* command, G4String newValues ) override;
0073     G4String GetCurrentValue( G4UIcommand* command ) override;
0074   
0075   private:
0076 
0077     void Init();
0078     void CheckGeometry();
0079     void ResetNavigator();
0080     void SetVerbosity(const G4String& newValue);
0081     void SetCheckMode(const G4String& newValue);
0082     void SetPushFlag(const G4String& newValue);
0083     void RecursiveOverlapTest();
0084     void TreeOverlapTest();
0085 
0086     struct OverlapMode
0087     {
0088       inline static const G4String placed = "placed";
0089       inline static const G4String logical = "logical";
0090     };
0091 
0092     G4UIdirectory             *geodir, *navdir, *testdir;
0093     G4UIcmdWithABool          *chkCmd, *pchkCmd, *verCmd, *parCmd;
0094     G4UIcmdWithoutParameter   *resCmd;
0095     G4UIcmdWithAString        *recCmd;
0096     G4UIcmdWithADoubleAndUnit *tolCmd;
0097     G4UIcmdWithAnInteger      *verbCmd, *rslCmd, *rcsCmd, *rcdCmd, *errCmd;
0098 
0099     G4double tol = 0.0;
0100     G4int recLevel = 0, recDepth = -1;
0101     G4bool checkParallelWorlds = false;
0102 
0103     G4TransportationManager* tmanager;
0104     std::vector<G4GeomTestVolume*> tvolumes;
0105 };
0106 
0107 #endif