Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4VPVParameterisation.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 // class G4VPVParamterisation
30 //
31 // Class description:
32 //
33 // Parameterisation class, able to compute the transformation and
34 // (indirectly) the dimensions of parameterised volumes, given a
35 // replication number.
36 
37 // History:
38 // 25.07.96 P.Kent Initial stub version
39 // 20.09.96 V.Grichine Modifications for G4Trap/Cons/Sphere
40 // 31.10.96 V.Grichine Modifications for G4Torus/Para
41 // 17.02.98 J.Apostolakis Allowing the parameterisation of Solid type
42 // --------------------------------------------------------------------
43 #ifndef G4VPVPARAMETERISATION_HH
44 #define G4VPVPARAMETERISATION_HH
45 
46 #include "G4Types.hh"
48 
49 class G4VPhysicalVolume;
50 class G4VTouchable;
51 class G4VSolid;
52 class G4Material;
53 
54 // CSG Entities which may be parameterised/replicated
55 //
56 class G4Box;
57 class G4Tubs;
58 class G4Trd;
59 class G4Trap;
60 class G4Cons;
61 class G4Sphere;
62 class G4Orb;
63 class G4Torus;
64 class G4Para;
65 class G4Polycone;
66 class G4Polyhedra;
67 class G4Hype;
68 
70 
72 {
73  public:
74 
76  virtual ~G4VPVParameterisation();
77 
78  public: // with description
79 
80  virtual void ComputeTransformation(const G4int,
81  G4VPhysicalVolume * ) const = 0;
82 
83  virtual G4VSolid* ComputeSolid(const G4int, G4VPhysicalVolume *);
84 
85  virtual G4Material* ComputeMaterial(const G4int repNo,
86  G4VPhysicalVolume *currentVol,
87  const G4VTouchable *parentTouch=0);
88  // Refined method, enabling nested parameterisations
89 
90  virtual G4bool IsNested() const;
92  // These enable material scan for nested parameterisations
93 
94  virtual void ComputeDimensions(G4Box &,
95  const G4int,
96  const G4VPhysicalVolume *) const {}
97 
98  virtual void ComputeDimensions(G4Tubs &,
99  const G4int,
100  const G4VPhysicalVolume *) const {}
101 
102  virtual void ComputeDimensions(G4Trd &,
103  const G4int,
104  const G4VPhysicalVolume *) const {}
105 
106  virtual void ComputeDimensions(G4Trap &,
107  const G4int,
108  const G4VPhysicalVolume *) const {}
109 
110  virtual void ComputeDimensions(G4Cons &,
111  const G4int,
112  const G4VPhysicalVolume *) const {}
113 
114  virtual void ComputeDimensions(G4Sphere &,
115  const G4int,
116  const G4VPhysicalVolume *) const {}
117 
118  virtual void ComputeDimensions(G4Orb &,
119  const G4int,
120  const G4VPhysicalVolume *) const {}
121 
122  virtual void ComputeDimensions(G4Torus &,
123  const G4int,
124  const G4VPhysicalVolume *) const {}
125 
126  virtual void ComputeDimensions(G4Para &,
127  const G4int,
128  const G4VPhysicalVolume *) const {}
129 
131  const G4int,
132  const G4VPhysicalVolume *) const {}
133 
135  const G4int,
136  const G4VPhysicalVolume *) const {}
137 
138  virtual void ComputeDimensions(G4Hype &,
139  const G4int,
140  const G4VPhysicalVolume *) const {}
141 };
142 
143 #endif