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 FCALHadModule.cc, which defines
0032 //                      the  geometry of the FCAL HadModule 0.
0033 //   Developped:        10-March-2000   M.F.
0034 //
0035 //----------------------------------------------------------------------------
0036 
0037 #ifndef FCALHadModule_h
0038 #define FCALHadModule_h 1
0039 
0040 #include "globals.hh"
0041 #include "G4LogicalVolume.hh"
0042 #include "G4SDManager.hh"
0043 #include "FCALHadModuleSD.hh"
0044 
0045 class FCALHadModule
0046 {
0047 public:
0048 
0049   FCALHadModule();
0050   ~FCALHadModule();
0051 
0052 public:
0053 
0054   G4LogicalVolume * Construct();
0055 
0056   void InitializeGeometry(); 
0057   G4int GetF2TileID(G4int); 
0058 
0059 private:
0060   G4int NF2LarGap;
0061   G4int* F2LArGapID;
0062   G4int* F2LArIX;
0063   G4int* F2LArJY;
0064   G4int* F2LArITile;
0065   G4double* F2LArGapPosX;
0066   G4double* F2LArGapPosY;
0067 
0068 private:
0069 
0070   G4double HadModuleRMin, HadModuleRMax, HadModuleLenght;
0071   G4double HadModuleStartPhi, HadModuleDPhi;
0072   G4double FCAL2HadSmart;
0073 
0074   G4double WAbsorberRMin, WAbsorberRMax, WAbsorberLenght;
0075   G4double WAbsorberStartPhi, WAbsorberDPhi;
0076 
0077   G4double CuPlateLenght, CuPlateAPosZ, CuPlateBPosZ;
0078 
0079   G4int NCableTroff;
0080   G4double F2TroffRmin, F2TroffRmax, F2TroffMainLenght;
0081   G4double F2TroffABLenght, F2TroffStartPhi,  F2TroffDphi; 
0082   G4double F2TroffRotZ, F2TroffABPosZ; 
0083 
0084   G4double F2LArGapRmin, F2LArGapRmax, F2LArGapLenght;
0085   G4double F2LArGapStartPhi, F2LArGapDphi;
0086   G4double F2RodRmin, F2RodRmax, F2RodLenght, F2RodStartPhi, F2RodDphi;
0087 
0088   FCALHadModuleSD* FcalHadModuleSD;
0089 
0090 };
0091 
0092 #endif  /* FCALHadModule.hh */
0093