source: trunk/source/geometry/divisions/include/G4VDivisionParameterisation.hh

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

geant4 tag 9.4

File size: 4.3 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: G4VDivisionParameterisation.hh,v 1.13 2010/11/10 09:15:48 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-04-ref-00 $
29//
30// class G4VDivisionParameterisation
31//
32// Class description:
33//
34// Base class for parameterisations defining divisions of volumes
35// for different kind of CSG and specific solids.
36
37// History:
38// -------
39// 09.05.01 - P.Arce, Initial version
40// 08.04.04 - I.Hrivnacova, Implemented reflection
41// 21.04.10 - M.Asai, Added gaps
42//---------------------------------------------------------------------
43#ifndef G4VDivisionParameterisation_H
44#define G4VDivisionParameterisation_H 1
45
46#include "G4Types.hh"
47#include "geomdefs.hh"
48#include "G4VPVParameterisation.hh"
49
50enum DivisionType { DivNDIVandWIDTH, DivNDIV, DivWIDTH };
51
52class G4VPhysicalVolume;
53class G4VSolid;
54
55class G4VDivisionParameterisation : public G4VPVParameterisation
56{ 
57  public:  // with description
58 
59    G4VDivisionParameterisation( EAxis axis, G4int nDiv, G4double width,
60                                 G4double offset, DivisionType divType,
61                                 G4VSolid* motherSolid = 0);
62    virtual ~G4VDivisionParameterisation();
63 
64    virtual G4VSolid* ComputeSolid(const G4int, G4VPhysicalVolume *);
65
66    virtual void ComputeTransformation(const G4int copyNo,
67                                       G4VPhysicalVolume *physVol) const = 0;
68 
69    inline const G4String& GetType() const;
70    inline EAxis GetAxis() const;
71    inline G4int GetNoDiv() const;
72    inline G4double GetWidth() const;
73    inline G4double GetOffset() const;
74    inline G4VSolid* GetMotherSolid() const;
75    inline void SetType(const G4String& type);
76    inline G4int VolumeFirstCopyNo() const;
77    inline void SetHalfGap(G4double hg);
78    inline G4double GetHalfGap() const;
79
80  protected:  // with description
81
82    void ChangeRotMatrix( G4VPhysicalVolume* physVol,
83                          G4double rotZ = 0. ) const;
84 
85    G4int CalculateNDiv( G4double motherDim, G4double width,
86                         G4double offset ) const;
87    G4double CalculateWidth( G4double motherDim, G4int nDiv,
88                             G4double offset ) const;
89 
90    virtual void CheckParametersValidity();
91    void CheckOffset( G4double maxPar );
92    void CheckNDivAndWidth( G4double maxPar );
93    virtual G4double GetMaxParameter() const = 0;
94    G4double OffsetZ() const;
95
96  protected:
97 
98    G4String ftype;
99    EAxis faxis;
100    G4int fnDiv;
101    G4double fwidth;
102    G4double foffset;
103    DivisionType fDivisionType;
104    G4VSolid* fmotherSolid;
105    G4bool fReflectedSolid;
106    G4bool fDeleteSolid;
107 
108    static G4int verbose;
109    G4int theVoluFirstCopyNo;
110
111    G4double kCarTolerance;
112
113    G4double fhgap;
114};
115
116#include "G4VDivisionParameterisation.icc"
117
118#endif
Note: See TracBrowser for help on using the repository browser.