Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4VDivisionParameterisation.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: G4VDivisionParameterisation.hh 69784 2013-05-15 09:16:06Z gcosmo $
28 //
29 // class G4VDivisionParameterisation
30 //
31 // Class description:
32 //
33 // Base class for parameterisations defining divisions of volumes
34 // for different kind of CSG and specific solids.
35 
36 // History:
37 // -------
38 // 09.05.01 - P.Arce, Initial version
39 // 08.04.04 - I.Hrivnacova, Implemented reflection
40 // 21.04.10 - M.Asai, Added gaps
41 //---------------------------------------------------------------------
42 #ifndef G4VDivisionParameterisation_H
43 #define G4VDivisionParameterisation_H 1
44 
45 #include "G4Types.hh"
46 #include "geomdefs.hh"
47 #include "G4VPVParameterisation.hh"
48 
50 
51 class G4VPhysicalVolume;
52 class G4VSolid;
53 
55 {
56  public: // with description
57 
59  G4double offset, DivisionType divType,
60  G4VSolid* motherSolid = 0);
62 
63  virtual G4VSolid* ComputeSolid(const G4int, G4VPhysicalVolume *);
64 
65  virtual void ComputeTransformation(const G4int copyNo,
66  G4VPhysicalVolume *physVol) const = 0;
67 
68  inline const G4String& GetType() const;
69  inline EAxis GetAxis() const;
70  inline G4int GetNoDiv() const;
71  inline G4double GetWidth() const;
72  inline G4double GetOffset() const;
73  inline G4VSolid* GetMotherSolid() const;
74  inline void SetType(const G4String& type);
75  inline G4int VolumeFirstCopyNo() const;
76  inline void SetHalfGap(G4double hg);
77  inline G4double GetHalfGap() const;
78 
79  protected: // with description
80 
81  void ChangeRotMatrix( G4VPhysicalVolume* physVol,
82  G4double rotZ = 0. ) const;
83 
84  G4int CalculateNDiv( G4double motherDim, G4double width,
85  G4double offset ) const;
86  G4double CalculateWidth( G4double motherDim, G4int nDiv,
87  G4double offset ) const;
88 
89  virtual void CheckParametersValidity();
90  void CheckOffset( G4double maxPar );
91  void CheckNDivAndWidth( G4double maxPar );
92  virtual G4double GetMaxParameter() const = 0;
93  G4double OffsetZ() const;
94 
95  protected:
96 
106 
107  static G4int verbose;
109 
111 
113 };
114 
115 #include "G4VDivisionParameterisation.icc"
116 
117 #endif