Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4tgbVolume.hh
Go to the documentation of this file.
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$
28//
29//
30// class G4tgbVolume
31//
32// Class description:
33//
34// Class to manage the geometry info of any detector unit. The detector units
35// created in this class are essentially transient copies of Geant4 physical
36// volumes. Thus, they are characterized by a name and the parameters of a
37// Geant4 physical volume.
38// They have associated several detector positions, that can be instances of
39// G4tgrPlace, G4tgrPlaceDivRep or G4tgrPlaceParameterisation.
40// Each detector positioning is done inside a parent. As there can be several
41// parents, we will write one parent for each detector position, even if that
42// means that parents are repeated.
43
44// History:
45// - Created. P.Arce, CIEMAT (November 2007)
46// -------------------------------------------------------------------------
47
48#ifndef G4tgbVolume_h
49#define G4tgbVolume_h
50
51#include "globals.hh"
52
53#include <vector>
54#include <map>
55
56#include "G4tgrVolume.hh"
57#include "geomdefs.hh"
58
59class G4tgrPlace;
60class G4tgrSolid;
61class G4VSolid;
62class G4LogicalVolume;
65
67{
68 public: // with description
69
73
74 void ConstructG4Volumes( const G4tgrPlace* place,
75 const G4LogicalVolume* parentLV );
76 // Construct the G4VSolid, G4LogicalVolume and the G4VPhysicalVolume
77 // of copy 'copyNo'
78
80 // Construct the G4VSolid from the data of the corresponding G4tgrVolume.
81 // Allow to use data from another G4tgrVolume, needed by Boolean solids
82 // (that have to construct two solids and then do the Boolean operation)
83
85 // Construct the G4LogicalVolume and then call the construction of
86 // volumes that are positioned inside this LV
87
89 const G4LogicalVolume* currentLV,
90 const G4LogicalVolume* parentLV );
91 // Construct the G4VPhysicalVolume placing 'curentLV' with position
92 // given by the G4tgrPlace 'copyNo' inside 'parentLV'
93
95 std::map<G4String,G4double> cuts );
97 std::map<G4String,G4double> cuts );
98
99
100 void CheckNoSolidParams( const G4String& solidType,
101 const unsigned int NoParamExpected,
102 const unsigned int NoParam );
103 // Before building a solid of type 'solydType', check if the number
104 // of paramenters is the expected one
105
106 G4VSolid* BuildSolidForDivision( G4VSolid* parentSolid, EAxis axis );
107
108 const G4String& GetName() const { return theTgrVolume->GetName(); }
109 G4bool GetVisibility() const { return theTgrVolume->GetVisibility(); }
110 const G4double* GetColour() const { return theTgrVolume->GetColour(); }
111
112 private:
113
114 G4tgrVolume* theTgrVolume;
115 // The G4tgrVolume to which it corresponds
116
117 G4AssemblyVolume* theG4AssemblyVolume;
118};
119
120#endif
double G4double
Definition: G4Types.hh:64
bool G4bool
Definition: G4Types.hh:67
G4VPhysicalVolume * ConstructG4PhysVol(const G4tgrPlace *place, const G4LogicalVolume *currentLV, const G4LogicalVolume *parentLV)
Definition: G4tgbVolume.cc:942
const G4String & GetName() const
Definition: G4tgbVolume.hh:108
void SetCutsInEnergy(G4LogicalVolume *logvol, std::map< G4String, G4double > cuts)
G4VSolid * FindOrConstructG4Solid(const G4tgrSolid *vol)
Definition: G4tgbVolume.cc:219
void CheckNoSolidParams(const G4String &solidType, const unsigned int NoParamExpected, const unsigned int NoParam)
Definition: G4tgbVolume.cc:832
G4VSolid * BuildSolidForDivision(G4VSolid *parentSolid, EAxis axis)
void SetCutsInRange(G4LogicalVolume *logvol, std::map< G4String, G4double > cuts)
G4LogicalVolume * ConstructG4LogVol(const G4VSolid *solid)
Definition: G4tgbVolume.cc:851
const G4double * GetColour() const
Definition: G4tgbVolume.hh:110
void ConstructG4Volumes(const G4tgrPlace *place, const G4LogicalVolume *parentLV)
Definition: G4tgbVolume.cc:137
G4bool GetVisibility() const
Definition: G4tgbVolume.hh:109
G4bool GetVisibility() const
Definition: G4tgrVolume.hh:96
const G4String & GetName() const
Definition: G4tgrVolume.hh:89
G4double * GetColour() const
Definition: G4tgrVolume.hh:97
EAxis
Definition: geomdefs.hh:54