source: trunk/source/persistency/gdml/include/G4GDMLParameterisation.hh @ 1347

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

geant4 tag 9.4

File size: 3.9 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: G4GDMLParameterisation.hh,v 1.11 2010/10/14 16:19:40 gcosmo Exp $
28// GEANT4 tag $Name: gdml-V09-03-09 $
29//
30//
31// class G4GDMLParameterisation
32//
33// Class description:
34//
35// GDML class for interpretation of parameterisations.
36
37// History:
38// - Created.                                  Zoltan Torzsok, November 2007
39// -------------------------------------------------------------------------
40
41#ifndef _G4GDMLPARAMETERISATION_INCLUDED_
42#define _G4GDMLPARAMETERISATION_INCLUDED_
43
44#include "G4VPVParameterisation.hh"
45#include "G4VPhysicalVolume.hh"
46#include "G4ThreeVector.hh"
47#include "G4Box.hh"
48#include "G4Trd.hh"
49#include "G4Trap.hh"
50#include "G4Cons.hh"
51#include "G4Sphere.hh"
52#include "G4Orb.hh"
53#include "G4Torus.hh"
54#include "G4Para.hh"
55#include "G4Hype.hh"
56#include "G4Tubs.hh"
57#include "G4Polycone.hh"
58#include "G4Polyhedra.hh"
59#include "G4RotationMatrix.hh"
60#include "G4ThreeVector.hh"
61
62#include <vector>
63
64class G4GDMLParameterisation : public G4VPVParameterisation
65{
66
67 public:
68
69   struct PARAMETER
70   {
71      G4RotationMatrix* pRot;
72      G4ThreeVector position;
73      G4double dimension[16];
74
75      PARAMETER() : pRot(0) { memset(dimension,0,sizeof(dimension)); }
76   };
77
78   G4int GetSize() const;
79   void  AddParameter(const PARAMETER&);
80
81 private:
82
83   void ComputeTransformation(const G4int,G4VPhysicalVolume*) const;
84   void ComputeDimensions(G4Box&,const G4int,const G4VPhysicalVolume*) const;
85   void ComputeDimensions(G4Trd&,const G4int,const G4VPhysicalVolume*) const;
86   void ComputeDimensions(G4Trap&,const G4int,const G4VPhysicalVolume*) const;
87   void ComputeDimensions(G4Cons&,const G4int,const G4VPhysicalVolume*) const;
88   void ComputeDimensions(G4Sphere&,const G4int,const G4VPhysicalVolume*) const;
89   void ComputeDimensions(G4Orb&,const G4int,const G4VPhysicalVolume*) const;
90   void ComputeDimensions(G4Torus&,const G4int,const G4VPhysicalVolume*) const;
91   void ComputeDimensions(G4Para&,const G4int,const G4VPhysicalVolume*) const;
92   void ComputeDimensions(G4Hype&,const G4int,const G4VPhysicalVolume*) const;
93   void ComputeDimensions(G4Tubs&,const G4int,const G4VPhysicalVolume*) const;
94   void ComputeDimensions(G4Polycone&,const G4int,const G4VPhysicalVolume*) const;
95   void ComputeDimensions(G4Polyhedra&,const G4int,const G4VPhysicalVolume*) const;
96
97 private:
98
99   std::vector<PARAMETER> parameterList;
100
101};
102
103#endif
Note: See TracBrowser for help on using the repository browser.