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

Last change on this file since 1010 was 1010, checked in by garnier, 15 years ago

update

File size: 4.2 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.11 2007/05/11 13:26:26 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
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//---------------------------------------------------------------------
42#ifndef G4VDivisionParameterisation_H
43#define G4VDivisionParameterisation_H 1
44
45#include "G4Types.hh"
46#include "geomdefs.hh"
47#include "G4VPVParameterisation.hh"
48
49enum DivisionType { DivNDIVandWIDTH, DivNDIV, DivWIDTH };
50
51class G4VPhysicalVolume;
52class G4VSolid;
53
54class G4VDivisionParameterisation : public G4VPVParameterisation
55{ 
56  public:  // with description
57 
58    G4VDivisionParameterisation( EAxis axis, G4int nDiv, G4double width,
59                                 G4double offset, DivisionType divType,
60                                 G4VSolid* motherSolid = 0);
61    virtual ~G4VDivisionParameterisation();
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 
77  protected:  // with description
78
79    void ChangeRotMatrix( G4VPhysicalVolume* physVol,
80                          G4double rotZ = 0. ) const;
81 
82    G4int CalculateNDiv( G4double motherDim, G4double width,
83                         G4double offset ) const;
84    G4double CalculateWidth( G4double motherDim, G4int nDiv,
85                             G4double offset ) const;
86 
87    virtual void CheckParametersValidity();
88    void CheckOffset( G4double maxPar );
89    void CheckNDivAndWidth( G4double maxPar );
90    virtual G4double GetMaxParameter() const = 0;
91    G4double OffsetZ() const;
92
93  protected:
94 
95    G4String ftype;
96    EAxis faxis;
97    G4int fnDiv;
98    G4double fwidth;
99    G4double foffset;
100    DivisionType fDivisionType;
101    G4VSolid* fmotherSolid;
102    G4bool fReflectedSolid;
103    G4bool fDeleteSolid;
104 
105    static G4int verbose;
106    G4int theVoluFirstCopyNo;
107
108    G4double kCarTolerance;
109};
110
111#include "G4VDivisionParameterisation.icc"
112
113#endif
Note: See TracBrowser for help on using the repository browser.