source: trunk/examples/extended/runAndEvent/RE02/include/RE02NestedPhantomParameterisation.hh

Last change on this file was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 5.8 KB
Line 
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: RE02NestedPhantomParameterisation.hh,v 1.2 2006/12/13 15:42:45 gunter Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30// class G4VNestedParameterisation
31//
32// Class description:
33//
34// Base class for parameterisations that use information from the parent
35// volume to compute the material of a copy/instance of this volume.
36// This is in addition to using the current replication number.
37//
38// Notes:
39//  - Such a volume can be nested inside a placement volume or a parameterised 
40//    volume.
41//  - The user can modify the solid type, size or transformation using only
42//    the replication number of this parameterised volume.
43//    He/she is NOT allowed to change these attributes using information of
44//    parent volumes - otherwise incorrect results will occur.
45//  Also note that the usual restrictions apply:
46//   - the mother volume, in which these copies are placed, must always be
47//     of the same dimensions
48
49// History:
50// 24.02.05 - J.Apostolakis - First created version.
51// --------------------------------------------------------------------
52#ifndef RE02NESTEDPARAMETERISATION_HH
53#define RE02NESTEDPARAMETERISATION_HH
54
55#include "G4Types.hh"
56#include "G4VNestedParameterisation.hh"
57#include "G4ThreeVector.hh"
58#include <vector>
59
60class G4VPhysicalVolume;
61class G4VTouchable; 
62class G4VSolid;
63class G4Material;
64
65// CSG Entities which may be parameterised/replicated
66//
67class G4Box;
68class G4Tubs;
69class G4Trd;
70class G4Trap;
71class G4Cons;
72class G4Sphere;
73class G4Orb;
74class G4Torus;
75class G4Para;
76class G4Polycone;
77class G4Polyhedra;
78class G4Hype;
79
80class RE02NestedPhantomParameterisation: public G4VNestedParameterisation
81{
82  public:  // with description
83
84    RE02NestedPhantomParameterisation(const G4ThreeVector& voxelSize,
85                                      G4int nz,
86                                      std::vector<G4Material*>& mat);
87    virtual ~RE02NestedPhantomParameterisation(); 
88
89    // Methods required in derived classes
90    // -----------------------------------
91    virtual G4Material* ComputeMaterial(G4VPhysicalVolume *currentVol,
92                                        const G4int repNo, 
93                                        const G4VTouchable *parentTouch=0
94                                        );
95  // Required method, as it is the reason for this class.
96  //   Must cope with parentTouch=0 for navigator's SetupHierarchy
97
98    virtual G4int       GetNumberOfMaterials() const;
99    virtual G4Material* GetMaterial(G4int idx) const;
100      // Needed to define materials for instances of Nested Parameterisation
101      //   Current convention: each call should return the materials
102      //   of all instances with the same mother/ancestor volume.
103
104    virtual void ComputeTransformation(const G4int no,
105                                       G4VPhysicalVolume *currentPV) const;
106
107    // Methods optional in derived classes
108    // -----------------------------------
109
110    // Additional standard Parameterisation methods,
111    //   which can be optionally defined, in case solid is used.
112
113    virtual void ComputeDimensions(G4Box &,
114                                   const G4int,
115                                   const G4VPhysicalVolume *) const;
116
117private:  // Dummy declarations to get rid of warnings ...
118  void ComputeDimensions (G4Trd&,const G4int,const G4VPhysicalVolume*) 
119    const {}
120  void ComputeDimensions (G4Trap&,const G4int,const G4VPhysicalVolume*) 
121    const {}
122  void ComputeDimensions (G4Cons&,const G4int,const G4VPhysicalVolume*) 
123    const {}
124  void ComputeDimensions (G4Sphere&,const G4int,const G4VPhysicalVolume*) 
125    const {}
126  void ComputeDimensions (G4Orb&,const G4int,const G4VPhysicalVolume*) 
127    const {}
128  void ComputeDimensions (G4Torus&,const G4int,const G4VPhysicalVolume*) 
129    const {}
130  void ComputeDimensions (G4Para&,const G4int,const G4VPhysicalVolume*) 
131    const {}
132  void ComputeDimensions (G4Hype&,const G4int,const G4VPhysicalVolume*) 
133    const {}
134  void ComputeDimensions (G4Tubs&,const G4int,const G4VPhysicalVolume*) 
135    const {}
136  void ComputeDimensions (G4Polycone&,const G4int,const G4VPhysicalVolume*)
137    const {}
138  void ComputeDimensions (G4Polyhedra&,const G4int,const G4VPhysicalVolume*) 
139    const {}
140
141private:
142  G4double fdX,fdY,fdZ;
143  G4int fNz;
144  //
145  std::vector<G4double>  fpZ;
146  std::vector<G4Material*> fmat;
147};
148
149#endif
Note: See TracBrowser for help on using the repository browser.