G4ParameterisationTubs.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: G4ParameterisationTubs.hh 69784 2013-05-15 09:16:06Z gcosmo $
00028 //
00029 // classes G4ParameterisationTubsRho
00030 //         G4ParameterisationTubsPhi
00031 //         G4ParameterisationTubsZ
00032 //
00033 // Class description:
00034 //
00035 // This class represents the parameterised positioning equivalent to 
00036 // dividing a G4Tubs along one of each axis Rho, Phi, Z.
00037 
00038 // History:
00039 // -------
00040 // 09.05.01 - P.Arce, Initial version
00041 // 08.04.04 - I.Hrivnacova, Implemented reflection
00042 // --------------------------------------------------------------------
00043 #ifndef G4ParameterisationTubsRho_H
00044 #define G4ParameterisationTubsRho_H 1
00045 
00046 #include "G4VDivisionParameterisation.hh"
00047 
00048 class G4VPhysicalVolume;
00049 
00050 // Dummy declarations to get rid of warnings ...
00051 //
00052 class G4Trd;
00053 class G4Trap;
00054 class G4Cons;
00055 class G4Sphere;
00056 class G4Orb;
00057 class G4Torus;
00058 class G4Para;
00059 class G4Hype;
00060 class G4Polycone;
00061 class G4Polyhedra;
00062 
00063 class G4VParameterisationTubs : public G4VDivisionParameterisation
00064 { 
00065   public:  // with description
00066   
00067     G4VParameterisationTubs( EAxis axis, G4int nCopies,
00068                             G4double offset, G4double step,
00069                             G4VSolid* msolid, DivisionType divType );
00070   
00071     virtual ~G4VParameterisationTubs();
00072 };
00073 
00074 class G4ParameterisationTubsRho : public G4VParameterisationTubs
00075 { 
00076   public:  // with description
00077 
00078     G4ParameterisationTubsRho( EAxis axis, G4int nCopies,
00079                                G4double offset, G4double step,
00080                                G4VSolid* motherSolid, DivisionType divType );
00081    ~G4ParameterisationTubsRho();
00082 
00083     G4double GetMaxParameter() const;
00084 
00085     void ComputeTransformation(const G4int copyNo,
00086                                      G4VPhysicalVolume* physVol) const;
00087     void ComputeDimensions(G4Tubs& tubs, const G4int copyNo,
00088                            const G4VPhysicalVolume* physVol) const;
00089 
00090   private:  // Dummy declarations to get rid of warnings ...
00091 
00092     void ComputeDimensions (G4Trd&,const G4int,
00093                             const G4VPhysicalVolume*) const {}
00094     void ComputeDimensions (G4Trap&,const G4int,
00095                             const G4VPhysicalVolume*) const {}
00096     void ComputeDimensions (G4Box&,const G4int,
00097                             const G4VPhysicalVolume*) const {}
00098     void ComputeDimensions (G4Sphere&,const G4int,
00099                             const G4VPhysicalVolume*) const {}
00100     void ComputeDimensions (G4Orb&,const G4int,
00101                             const G4VPhysicalVolume*) const {}
00102     void ComputeDimensions (G4Torus&,const G4int,
00103                             const G4VPhysicalVolume*) const {}
00104     void ComputeDimensions (G4Para&,const G4int,
00105                             const G4VPhysicalVolume*) const {}
00106     void ComputeDimensions (G4Hype&,const G4int,
00107                             const G4VPhysicalVolume*) const {}
00108     void ComputeDimensions (G4Cons&,const G4int,
00109                             const G4VPhysicalVolume*) const {}
00110     void ComputeDimensions (G4Polycone&,const G4int,
00111                             const G4VPhysicalVolume*) const {}
00112     void ComputeDimensions (G4Polyhedra&,const G4int,
00113                             const G4VPhysicalVolume*) const {}
00114 };
00115 
00116 
00117 class G4ParameterisationTubsPhi : public G4VParameterisationTubs
00118 { 
00119   public:  // with description
00120 
00121     G4ParameterisationTubsPhi( EAxis axis, G4int nCopies,
00122                                G4double offset, G4double step,
00123                                G4VSolid* motherSolid, DivisionType divType );
00124    ~G4ParameterisationTubsPhi();
00125 
00126     G4double GetMaxParameter() const;
00127 
00128     void ComputeTransformation(const G4int copyNo,
00129                                      G4VPhysicalVolume* physVol) const;
00130     void ComputeDimensions(G4Tubs& tubs, const G4int copyNo,
00131                            const G4VPhysicalVolume* physVol) const;
00132 
00133   private:  // Dummy declarations to get rid of warnings ...
00134 
00135     void ComputeDimensions (G4Trd&,const G4int,
00136                             const G4VPhysicalVolume*) const {}
00137     void ComputeDimensions (G4Trap&,const G4int,
00138                             const G4VPhysicalVolume*) const {}
00139     void ComputeDimensions (G4Box&,const G4int,
00140                             const G4VPhysicalVolume*) const {}
00141     void ComputeDimensions (G4Sphere&,const G4int,
00142                             const G4VPhysicalVolume*) const {}
00143     void ComputeDimensions (G4Orb&,const G4int,
00144                             const G4VPhysicalVolume*) const {}
00145     void ComputeDimensions (G4Torus&,const G4int,
00146                             const G4VPhysicalVolume*) const {}
00147     void ComputeDimensions (G4Para&,const G4int,
00148                             const G4VPhysicalVolume*) const {}
00149     void ComputeDimensions (G4Hype&,const G4int,
00150                             const G4VPhysicalVolume*) const {}
00151     void ComputeDimensions (G4Cons&,const G4int,
00152                             const G4VPhysicalVolume*) const {}
00153     void ComputeDimensions (G4Polycone&,const G4int,
00154                             const G4VPhysicalVolume*) const {}
00155     void ComputeDimensions (G4Polyhedra&,const G4int,
00156                             const G4VPhysicalVolume*) const {}
00157 };
00158 
00159 
00160 class G4ParameterisationTubsZ : public G4VParameterisationTubs
00161 { 
00162   public:  // with description
00163 
00164     G4ParameterisationTubsZ( EAxis axis, G4int nCopies,
00165                              G4double offset, G4double step,
00166                              G4VSolid* motherSolid, DivisionType divType );
00167    ~G4ParameterisationTubsZ();
00168 
00169     G4double GetMaxParameter() const;
00170 
00171     void ComputeTransformation(const G4int copyNo,
00172                                      G4VPhysicalVolume* physVol) const;
00173     void ComputeDimensions(G4Tubs& tubs, const G4int copyNo,
00174                            const G4VPhysicalVolume* physVol) const;
00175 
00176   private:  // Dummy declarations to get rid of warnings ...
00177 
00178     void ComputeDimensions (G4Trd&,const G4int,
00179                             const G4VPhysicalVolume*) const {}
00180     void ComputeDimensions (G4Trap&,const G4int,
00181                             const G4VPhysicalVolume*) const {}
00182     void ComputeDimensions (G4Box&,const G4int,
00183                             const G4VPhysicalVolume*) const {}
00184     void ComputeDimensions (G4Sphere&,const G4int,
00185                             const G4VPhysicalVolume*) const {}
00186     void ComputeDimensions (G4Orb&,const G4int,
00187                             const G4VPhysicalVolume*) const {}
00188     void ComputeDimensions (G4Torus&,const G4int,
00189                             const G4VPhysicalVolume*) const {}
00190     void ComputeDimensions (G4Para&,const G4int,
00191                             const G4VPhysicalVolume*) const {}
00192     void ComputeDimensions (G4Hype&,const G4int,
00193                             const G4VPhysicalVolume*) const {}
00194     void ComputeDimensions (G4Cons&,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:15 2013 for Geant4 by  doxygen 1.4.7