| 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: PhotInGapParameterisation.hh,v 1.5 2006/11/22 09:44:22 gcosmo Exp $
|
|---|
| 28 | // GEANT4 tag $Name: $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // A parameterisation that describes a series of boxes along Z
|
|---|
| 32 | // The boxes have equal size.
|
|---|
| 33 | //
|
|---|
| 34 |
|
|---|
| 35 | #ifndef PhotInGapParameterisation_H
|
|---|
| 36 | #define PhotInGapParameterisation_H 1
|
|---|
| 37 |
|
|---|
| 38 | #include "globals.hh"
|
|---|
| 39 | #include "G4VPVParameterisation.hh"
|
|---|
| 40 | #include "G4VPhysicalVolume.hh"
|
|---|
| 41 | #include "G4ThreeVector.hh"
|
|---|
| 42 | #include "G4Material.hh"
|
|---|
| 43 |
|
|---|
| 44 | #include "PhotInConstants.hh"
|
|---|
| 45 |
|
|---|
| 46 | class PhotInGapParameterisation : public G4VPVParameterisation
|
|---|
| 47 | {
|
|---|
| 48 | public: // Constructors & Destructors
|
|---|
| 49 | PhotInGapParameterisation();
|
|---|
| 50 | virtual ~PhotInGapParameterisation(); // Means that it can be a basic class
|
|---|
| 51 |
|
|---|
| 52 | // -v-v-v-v-v- Virtual functions (can be overloaded) -v-v-v-v-v-v-v
|
|---|
| 53 | virtual void ComputeTransformation(const G4int copyNo, G4VPhysicalVolume* physVol) const;
|
|---|
| 54 | virtual G4Material* ComputeMaterial(const G4int copyNo, G4VPhysicalVolume* physVol,
|
|---|
| 55 | const G4VTouchable* parentTouch=0);
|
|---|
| 56 |
|
|---|
| 57 | void SetNumberOfSlabs(G4int nl) { numberOfSlabs = nl; }
|
|---|
| 58 | void SetGapMaterial(G4Material* mat) { gapMaterial = mat; }
|
|---|
| 59 | void SetHalfTotalWidth(G4double hy) { hyTot = hy; }
|
|---|
| 60 | void SetHalfTotalLayerThickness(G4double hz) { hzLay = hz; }
|
|---|
| 61 | void SetSamplingFraction(G4double sf) { sampFract = sf; }
|
|---|
| 62 | G4int GetNumberOfSlabs() const { return numberOfSlabs; }
|
|---|
| 63 | G4Material* GetGapMaterial() const { return gapMaterial; }
|
|---|
| 64 | G4double GetHalfTotalWidth() const { return hyTot; }
|
|---|
| 65 | G4double GetHalfTotalLayerThickness() const { return hzLay; }
|
|---|
| 66 | G4double GetSamplingFraction() const { return sampFract; }
|
|---|
| 67 |
|
|---|
| 68 | private: // --- BODY ---
|
|---|
| 69 | G4int numberOfSlabs; // Subdivision of the active area in a few slabs
|
|---|
| 70 | G4Material* gapMaterial; // Material of the active area to be subdivided
|
|---|
| 71 | G4double hyTot; // Total transversal halfWidth to be subdivided
|
|---|
| 72 | G4double hzLay; // Half z-thickness of the layer of the calorimeter
|
|---|
| 73 | G4double sampFract; // Sampling fraction of the active area (in length)
|
|---|
| 74 |
|
|---|
| 75 | };
|
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 | #endif
|
|---|
| 79 |
|
|---|
| 80 |
|
|---|