EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4InttFPHXParameterisation.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4InttFPHXParameterisation.h
1 // Tell emacs that this is a C++ source
2 // This file is really -*- C++ -*-.
3 #ifndef G4INTT_PHG4INTTPARAMETERISATION_H
4 #define G4INTT_PHG4INTTPARAMETERISATION_H
5 
6 #include <Geant4/G4Types.hh> // for G4double, G4int
7 #include <Geant4/G4VPVParameterisation.hh>
8 
9 class G4VPhysicalVolume;
10 
11 /*
12  * FPHX location
13  */
14 class PHG4InttFPHXParameterisation : public G4VPVParameterisation
15 {
16  public:
17  PHG4InttFPHXParameterisation(const double offsetx, const double offsety, const double offsetz, const double dz, const int ncopy);
19  void ComputeTransformation(const G4int icopy, G4VPhysicalVolume *physVol) const override;
20 
21  private:
22  G4double fXFPHX[20];
23  G4double fYFPHX[20];
24  G4double fZFPHX[20];
25 };
26 
27 #endif