Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
ExP01ChamberParameterisation Class Reference

Chamber parameterisation for the persistency example. More...

#include <ExP01ChamberParameterisation.hh>

Inheritance diagram for ExP01ChamberParameterisation:
G4VPVParameterisation

Public Member Functions

 ExP01ChamberParameterisation (G4int NoChambers, G4double startZ, G4double spacing, G4double widthChamber, G4double lengthInitial, G4double lengthFinal)
 
 ~ExP01ChamberParameterisation ()
 
void ComputeTransformation (const G4int copyNo, G4VPhysicalVolume *physVol) const
 
void ComputeDimensions (G4Box &trackerLayer, const G4int copyNo, const G4VPhysicalVolume *physVol) const
 
- Public Member Functions inherited from G4VPVParameterisation
 G4VPVParameterisation ()
 
virtual ~G4VPVParameterisation ()
 
virtual G4VSolidComputeSolid (const G4int, G4VPhysicalVolume *)
 
virtual G4MaterialComputeMaterial (const G4int repNo, G4VPhysicalVolume *currentVol, const G4VTouchable *parentTouch=0)
 
virtual G4bool IsNested () const
 
virtual G4VVolumeMaterialScannerGetMaterialScanner ()
 

Detailed Description

Chamber parameterisation for the persistency example.

Definition at line 67 of file ExP01ChamberParameterisation.hh.

Constructor & Destructor Documentation

ExP01ChamberParameterisation::ExP01ChamberParameterisation ( G4int  NoChambers,
G4double  startZ,
G4double  spacing,
G4double  widthChamber,
G4double  lengthInitial,
G4double  lengthFinal 
)

Definition at line 43 of file ExP01ChamberParameterisation.cc.

References G4cout, and G4endl.

51 {
52  fNoChambers = NoChambers;
53  fStartZ = startZ;
54  fHalfWidth = widthChamber*0.5;
55  fSpacing = spacingZ;
56  fHalfLengthFirst = 0.5 * lengthInitial;
57  // fHalfLengthLast = lengthFinal;
58  fHalfLengthIncr = 0;
59  if( NoChambers > 0 ){
60  fHalfLengthIncr = 0.5 * (lengthFinal-lengthInitial)/NoChambers;
61  if (spacingZ < widthChamber) {
62  G4cout << "ExP01ChamberParameterisation construction: Width>Spacing" << G4endl;
63  exit(1);;
64  }
65  }
66 
67 }
G4GLOB_DLL std::ostream G4cout
#define G4endl
Definition: G4ios.hh:61
ExP01ChamberParameterisation::~ExP01ChamberParameterisation ( )

Definition at line 71 of file ExP01ChamberParameterisation.cc.

72 {}

Member Function Documentation

void ExP01ChamberParameterisation::ComputeDimensions ( G4Box trackerLayer,
const G4int  copyNo,
const G4VPhysicalVolume physVol 
) const
virtual

Reimplemented from G4VPVParameterisation.

Definition at line 88 of file ExP01ChamberParameterisation.cc.

References G4Box::SetXHalfLength(), G4Box::SetYHalfLength(), and G4Box::SetZHalfLength().

89 {
90  G4double halfLength= fHalfLengthFirst + copyNo * fHalfLengthIncr;
91  trackerChamber.SetXHalfLength(halfLength);
92  trackerChamber.SetYHalfLength(halfLength);
93  trackerChamber.SetZHalfLength(fHalfWidth);
94 }
double G4double
Definition: G4Types.hh:76
void ExP01ChamberParameterisation::ComputeTransformation ( const G4int  copyNo,
G4VPhysicalVolume physVol 
) const
virtual

Implements G4VPVParameterisation.

Definition at line 77 of file ExP01ChamberParameterisation.cc.

References G4VPhysicalVolume::SetRotation(), and G4VPhysicalVolume::SetTranslation().

78 {
79  G4double Zposition= fStartZ + (copyNo+1) * fSpacing;
80  G4ThreeVector origin(0,0,Zposition);
81  physVol->SetTranslation(origin);
82  physVol->SetRotation(0);
83 }
void SetRotation(G4RotationMatrix *)
void SetTranslation(const G4ThreeVector &v)
double G4double
Definition: G4Types.hh:76

The documentation for this class was generated from the following files: