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