Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:16:56

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //   Author:            Mathieu Fontaine           Rachid Mazini
0027 //                      fontaine@lps.umontreal.ca  Rachid.Mazini@cern.ch
0028 //   Language:          C++
0029 //   Tested on:         g++
0030 //   Prerequisites:     None
0031 //   Purpose:           Header file for FCALCryostatVolume.cc, which defines
0032 //                      the  volumes in the cryostat.
0033 //   Developped:        10-March-2000   M.F.
0034 //
0035 //----------------------------------------------------------------------------
0036 
0037 #ifndef FCALCryostatVolumes_h
0038 #define FCALCryostatVolumes_h 1
0039 
0040 #include "globals.hh"
0041 #include "G4LogicalVolume.hh"
0042 #include "FCALEMModule.hh"
0043 #include "FCALHadModule.hh"
0044 
0045 class FCALCryostatVolumes
0046 {
0047 public:
0048 
0049   FCALCryostatVolumes();
0050   ~FCALCryostatVolumes();
0051 
0052 public:
0053 
0054   G4LogicalVolume * Construct();
0055 
0056 private:
0057 
0058   G4double CryostatRMin, CryostatRMax, CryostatLenght, StartingPhi, DPhi;
0059 
0060   G4double InsulationRMin, InsulationRMax, InsulationLenght;
0061 
0062   G4double LArgRMin, LArgRMax, LArgLenght;
0063   G4double LArgPosX, LArgPosY, LArgPosZ;
0064 
0065   G4double FrontExcluderSizeX, FrontExcluderSizeY, FrontExcluderSizeZ;
0066   G4double FrontExcluderPosX, FrontExcluderPosY, FrontExcluderPosZ;
0067 
0068   G4double BackExcluderSize1X, BackExcluderSize1Y, 
0069            BackExcluderSize2X, BackExcluderSize2Y,
0070            BackExcluderSizeZ;
0071   G4double BackExcluderPosX, BackExcluderPosY, BackExcluderPosZ,
0072            BackExcluderRotX;
0073 
0074   G4double FCALEnvelopeRMin, FCALEnvelopeRMax, FCALEnvelopeLenght, 
0075            FCALEnvelopeStartPhi, FCALEnvelopeDPhi;
0076   G4double FCALEnvelopePosX, FCALEnvelopePosY, FCALEnvelopePosZ,
0077            FCALEnvelopeRotX, FCALEnvelopeRotY;
0078 
0079   G4double FCALEmModulePosX, FCALEmModulePosY, FCALEmModulePosZ;
0080   
0081   G4double ModuleRotZ;
0082 
0083   G4double FCALHadModulePosX, FCALHadModulePosY, FCALHadModulePosZ;
0084 
0085   FCALEMModule * EmModule;
0086   FCALHadModule * HadModule;
0087 
0088 
0089 };
0090 
0091 #endif /* FCALcryostatVolumes.hh */
0092