G4ParameterisationBox.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // $Id: G4ParameterisationBox.hh 69784 2013-05-15 09:16:06Z gcosmo $
00028 //
00029 // classes G4ParameterisationBoxX,
00030 //         G4ParameterisationBoxY,
00031 //         G4ParameterisationBoxZ
00032 //
00033 // Class description:
00034 //
00035 // These classes represent the parameterised positioning equivalent to 
00036 // dividing a G4Box along one of each axis X, Y, Z.
00037 
00038 // History:
00039 // -------
00040 // 09.05.01 - P.Arce, Initial version
00041 // 08.04.04 - I.Hrivnacova, Implemented reflection
00042 // --------------------------------------------------------------------
00043 #ifndef G4ParameterisationBox_H
00044 #define G4ParameterisationBox_H 1
00045 
00046 #include "G4VDivisionParameterisation.hh"
00047 
00048 class G4VSolid;
00049 class G4VPhysicalVolume;
00050 
00051 // Dummy declarations to get rid of warnings ...
00052 //
00053 class G4Cons;
00054 class G4Trd;
00055 class G4Sphere;
00056 class G4Orb;
00057 class G4Torus;
00058 class G4Para;
00059 class G4Hype;
00060 class G4Tubs;
00061 class G4Polycone;
00062 class G4Polyhedra;
00063 
00064 class G4VParameterisationBox : public G4VDivisionParameterisation
00065 { 
00066   public:  // with description
00067   
00068     G4VParameterisationBox( EAxis axis, G4int nCopies,
00069                             G4double offset, G4double step,
00070                             G4VSolid* msolid, DivisionType divType );
00071   
00072     virtual ~G4VParameterisationBox();
00073 };
00074 
00075 class G4ParameterisationBoxX : public G4VParameterisationBox
00076 { 
00077   public:  // with description
00078   
00079     G4ParameterisationBoxX( EAxis axis, G4int nCopies,
00080                             G4double offset, G4double step,
00081                             G4VSolid* msolid, DivisionType divType );
00082    ~G4ParameterisationBoxX();
00083 
00084     G4double GetMaxParameter() const;
00085 
00086     void ComputeTransformation( const G4int copyNo,
00087                                       G4VPhysicalVolume* physVol ) const;
00088     void ComputeDimensions(G4Box& box, const G4int copyNo,
00089                            const G4VPhysicalVolume* physVol) const;
00090 
00091    private:  // Dummy declarations to get rid of warnings ...
00092 
00093     void ComputeDimensions (G4Cons&,const G4int,
00094                             const G4VPhysicalVolume*) const {}
00095     void ComputeDimensions (G4Trd&,const G4int,
00096                             const G4VPhysicalVolume*) const {}
00097     void ComputeDimensions (G4Sphere&,const G4int,
00098                             const G4VPhysicalVolume*) const {}
00099     void ComputeDimensions (G4Orb&,const G4int,
00100                             const G4VPhysicalVolume*) const {}
00101     void ComputeDimensions (G4Torus&,const G4int,
00102                             const G4VPhysicalVolume*) const {}
00103     void ComputeDimensions (G4Para&,const G4int,
00104                             const G4VPhysicalVolume*) const {}
00105     void ComputeDimensions (G4Trap&,const G4int,
00106                             const G4VPhysicalVolume*) const {}
00107     void ComputeDimensions (G4Hype&,const G4int,
00108                             const G4VPhysicalVolume*) const {}
00109     void ComputeDimensions (G4Tubs&,const G4int,
00110                             const G4VPhysicalVolume*) const {}
00111     void ComputeDimensions (G4Polycone&,const G4int,
00112                             const G4VPhysicalVolume*) const {}
00113     void ComputeDimensions (G4Polyhedra&,const G4int,
00114                             const G4VPhysicalVolume*) const {}
00115 };
00116 
00117 class G4ParameterisationBoxY : public G4VParameterisationBox
00118 { 
00119   public:  // with description
00120 
00121     G4ParameterisationBoxY( EAxis axis, G4int nCopies,
00122                             G4double offset, G4double step,
00123                             G4VSolid* msolid, DivisionType divType );
00124    ~G4ParameterisationBoxY();
00125 
00126     G4double GetMaxParameter() const;
00127 
00128     void ComputeTransformation( const G4int copyNo,
00129                                       G4VPhysicalVolume* physVol ) const;
00130 
00131     void ComputeDimensions(G4Box& box, const G4int copyNo,
00132                            const G4VPhysicalVolume* physVol) const;
00133 
00134   private:  // Dummy declarations to get rid of warnings ...
00135 
00136     void ComputeDimensions (G4Cons&,const G4int,
00137                             const G4VPhysicalVolume*) const {}
00138     void ComputeDimensions (G4Trd&,const G4int,
00139                             const G4VPhysicalVolume*) const {}
00140     void ComputeDimensions (G4Sphere&,const G4int,
00141                             const G4VPhysicalVolume*) const {}
00142     void ComputeDimensions (G4Orb&,const G4int,
00143                             const G4VPhysicalVolume*) const {}
00144     void ComputeDimensions (G4Torus&,const G4int,
00145                             const G4VPhysicalVolume*) const {}
00146     void ComputeDimensions (G4Para&,const G4int,
00147                             const G4VPhysicalVolume*) const {}
00148     void ComputeDimensions (G4Trap&,const G4int,
00149                             const G4VPhysicalVolume*) const {}
00150     void ComputeDimensions (G4Hype&,const G4int,
00151                             const G4VPhysicalVolume*) const {}
00152     void ComputeDimensions (G4Tubs&,const G4int,
00153                             const G4VPhysicalVolume*) const {}
00154     void ComputeDimensions (G4Polycone&,const G4int,
00155                             const G4VPhysicalVolume*) const {}
00156     void ComputeDimensions (G4Polyhedra&,const G4int,
00157                             const G4VPhysicalVolume*) const {}
00158 };
00159 
00160 class G4ParameterisationBoxZ : public G4VParameterisationBox
00161 { 
00162   public:  // with description
00163 
00164     G4ParameterisationBoxZ( EAxis axis, G4int nCopies,
00165                             G4double offset, G4double step,
00166                             G4VSolid* msolid, DivisionType divType );
00167    ~G4ParameterisationBoxZ();
00168 
00169     G4double GetMaxParameter() const;
00170 
00171     void ComputeTransformation( const G4int copyNo,
00172                                       G4VPhysicalVolume* physVol ) const;
00173     void ComputeDimensions(G4Box& box, const G4int copyNo,
00174                            const G4VPhysicalVolume* physVol) const;
00175 
00176   private:  // Dummy declarations to get rid of warnings ...
00177 
00178     void ComputeDimensions (G4Cons&,const G4int,
00179                             const G4VPhysicalVolume*) const {}
00180     void ComputeDimensions (G4Trd&,const G4int,
00181                             const G4VPhysicalVolume*) const {}
00182     void ComputeDimensions (G4Sphere&,const G4int,
00183                             const G4VPhysicalVolume*) const {}
00184     void ComputeDimensions (G4Orb&,const G4int,
00185                             const G4VPhysicalVolume*) const {}
00186     void ComputeDimensions (G4Torus&,const G4int,
00187                             const G4VPhysicalVolume*) const {}
00188     void ComputeDimensions (G4Para&,const G4int,
00189                             const G4VPhysicalVolume*) const {}
00190     void ComputeDimensions (G4Trap&,const G4int,
00191                             const G4VPhysicalVolume*) const {}
00192     void ComputeDimensions (G4Hype&,const G4int,
00193                             const G4VPhysicalVolume*) const {}
00194     void ComputeDimensions (G4Tubs&,const G4int,
00195                             const G4VPhysicalVolume*) const {}
00196     void ComputeDimensions (G4Polycone&,const G4int,
00197                             const G4VPhysicalVolume*) const {}
00198     void ComputeDimensions (G4Polyhedra&,const G4int,
00199                             const G4VPhysicalVolume*) const {}
00200 };
00201 
00202 #endif

Generated on Mon May 27 17:49:14 2013 for Geant4 by  doxygen 1.4.7