Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ExN02ChamberParameterisation.cc
Go to the documentation of this file.
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 /// \file parallel/ParN02/src/ExN02ChamberParameterisation.cc
27 /// \brief Implementation of the ExN02ChamberParameterisation class
28 //
29 //
30 // $Id: ExN02ChamberParameterisation.cc 66241 2012-12-13 18:34:42Z gunter $
31 //
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
36 
37 #include "G4VPhysicalVolume.hh"
38 #include "G4ThreeVector.hh"
39 #include "G4Box.hh"
40 
41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42 
44  G4int NoChambers,
45  G4double startZ, // Z of center of first
46  G4double spacingZ, // Z spacing of centers
47  G4double widthChamber,
48  G4double lengthInitial,
49  G4double lengthFinal )
50 {
51  fNoChambers = NoChambers;
52  fStartZ = startZ;
53  fHalfWidth = widthChamber*0.5;
54  fSpacing = spacingZ;
55  fHalfLengthFirst = 0.5 * lengthInitial;
56  // fHalfLengthLast = lengthFinal;
57  if( NoChambers > 0 ){
58  fHalfLengthIncr = 0.5 * (lengthFinal-lengthInitial)/NoChambers;
59  if (spacingZ < widthChamber) {
60  G4Exception("ExN02ChamberParameterisation::ExN02ChamberParameterisation()",
61  "InvalidSetup", FatalException,
62  "Width>Spacing");
63  }
64  }
65 
66 }
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69 
71 {}
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 
76 (const G4int copyNo, G4VPhysicalVolume* physVol) const
77 {
78  G4double Zposition= fStartZ + (copyNo+1) * fSpacing;
79  G4ThreeVector origin(0,0,Zposition);
80  physVol->SetTranslation(origin);
81  physVol->SetRotation(0);
82 }
83 
84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
85 
87 (G4Box& trackerChamber, const G4int copyNo, const G4VPhysicalVolume*) const
88 {
89  G4double halfLength= fHalfLengthFirst + copyNo * fHalfLengthIncr;
90  trackerChamber.SetXHalfLength(halfLength);
91  trackerChamber.SetYHalfLength(halfLength);
92  trackerChamber.SetZHalfLength(fHalfWidth);
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void SetZHalfLength(G4double dz)
Definition: G4Box.cc:172
ExN02ChamberParameterisation(G4int NoChambers, G4double startZ, G4double spacing, G4double widthChamber, G4double lengthInitial, G4double lengthFinal)
void ComputeDimensions(G4Box &trackerLayer, const G4int copyNo, const G4VPhysicalVolume *physVol) const
Definition: G4Box.hh:63
int G4int
Definition: G4Types.hh:78
void SetRotation(G4RotationMatrix *)
void ComputeTransformation(const G4int copyNo, G4VPhysicalVolume *physVol) const
void SetTranslation(const G4ThreeVector &v)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
void SetYHalfLength(G4double dy)
Definition: G4Box.cc:152
void SetXHalfLength(G4double dx)
Definition: G4Box.cc:132
double G4double
Definition: G4Types.hh:76