| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| 27 | // $Id: G4tgrVolume.hh,v 1.7 2008/12/18 12:59:08 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: geant4-09-02-ref-02 $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // class G4tgrVolume
|
|---|
| 32 | //
|
|---|
| 33 | // Class description:
|
|---|
| 34 | //
|
|---|
| 35 | // Abstract base class to manage the geometry info of any volume.
|
|---|
| 36 | // Volumes created in this class contain the information of a detector volume.
|
|---|
| 37 | // They have associated several detector placements that can be instances of
|
|---|
| 38 | // G4tgrPlace, G4tgrPlaceDivision, G4tgrPlaceDivRep or
|
|---|
| 39 | // G4tgrPlaceParameterisation.
|
|---|
| 40 | // Each detector positioning is done inside a parent. As there can be several
|
|---|
| 41 | // parents, one parent for each volume placement will be written, even if that
|
|---|
| 42 | // means that parents are repeated...
|
|---|
| 43 |
|
|---|
| 44 | // History:
|
|---|
| 45 | // - Created. P.Arce, CIEMAT (November 2007)
|
|---|
| 46 | // -------------------------------------------------------------------------
|
|---|
| 47 |
|
|---|
| 48 | #ifndef G4tgrVolume_h
|
|---|
| 49 | #define G4tgrVolume_h
|
|---|
| 50 |
|
|---|
| 51 | #include "globals.hh"
|
|---|
| 52 |
|
|---|
| 53 | #include <vector>
|
|---|
| 54 | #include <map>
|
|---|
| 55 |
|
|---|
| 56 | class G4tgrSolid;
|
|---|
| 57 | class G4tgrPlace;
|
|---|
| 58 | class G4tgrPlaceDivRep;
|
|---|
| 59 | class G4tgrPlaceParameterisation;
|
|---|
| 60 |
|
|---|
| 61 | class G4tgrVolume
|
|---|
| 62 | {
|
|---|
| 63 | public: // with description
|
|---|
| 64 |
|
|---|
| 65 | G4tgrVolume();
|
|---|
| 66 | G4tgrVolume( const std::vector<G4String>& wl );
|
|---|
| 67 | virtual ~G4tgrVolume();
|
|---|
| 68 |
|
|---|
| 69 | virtual G4tgrPlace* AddPlace( const std::vector<G4String>& wl );
|
|---|
| 70 | // Add a position with the data read from a ':place' tag
|
|---|
| 71 |
|
|---|
| 72 | G4tgrPlaceDivRep* AddPlaceReplica( const std::vector<G4String>& wl );
|
|---|
| 73 | // Add a replicated position
|
|---|
| 74 |
|
|---|
| 75 | G4tgrPlaceParameterisation* AddPlaceParam(const std::vector<G4String>& wl);
|
|---|
| 76 | // Add a parameterised position
|
|---|
| 77 |
|
|---|
| 78 | void AddVisibility( const std::vector<G4String>& wl );
|
|---|
| 79 | // Add visibility flag
|
|---|
| 80 |
|
|---|
| 81 | void AddRGBColour( const std::vector<G4String>& wl );
|
|---|
| 82 | // Add colour
|
|---|
| 83 |
|
|---|
| 84 | void AddCheckOverlaps( const std::vector<G4String>& wl );
|
|---|
| 85 | // Add check overlaps flag
|
|---|
| 86 |
|
|---|
| 87 | // Accessors
|
|---|
| 88 |
|
|---|
| 89 | const G4String& GetName() const {return theName;}
|
|---|
| 90 | const G4String& GetType() const {return theType;}
|
|---|
| 91 | const G4tgrSolid* GetSolid() const {return theSolid;}
|
|---|
| 92 | const G4String& GetMaterialName() const {return theMaterialName;}
|
|---|
| 93 |
|
|---|
| 94 | const std::vector<G4tgrPlace*> GetPlacements() const {return thePlacements;}
|
|---|
| 95 | G4bool GetVisibility() const {return theVisibility;}
|
|---|
| 96 | const G4double* GetColour() const {return theRGBColour;}
|
|---|
| 97 | G4bool GetCheckOverlaps() const {return theCheckOverlaps;}
|
|---|
| 98 |
|
|---|
| 99 | virtual G4tgrVolume* GetVolume( G4int ii ) const;
|
|---|
| 100 |
|
|---|
| 101 | friend std::ostream& operator<<(std::ostream& os, const G4tgrVolume& obj);
|
|---|
| 102 |
|
|---|
| 103 | protected:
|
|---|
| 104 |
|
|---|
| 105 | G4String theName;
|
|---|
| 106 | // Name of the volume
|
|---|
| 107 | G4String theType;
|
|---|
| 108 | // Type of the volume
|
|---|
| 109 | G4String theMaterialName;
|
|---|
| 110 | // Material of which the corresponding PV will be made of
|
|---|
| 111 | G4tgrSolid* theSolid;
|
|---|
| 112 | // Solid
|
|---|
| 113 | std::vector<G4tgrPlace*> thePlacements;
|
|---|
| 114 | // Vector of placements
|
|---|
| 115 |
|
|---|
| 116 | G4bool theVisibility;
|
|---|
| 117 | G4double* theRGBColour;
|
|---|
| 118 | G4bool theCheckOverlaps;
|
|---|
| 119 | };
|
|---|
| 120 |
|
|---|
| 121 | #endif
|
|---|