Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:17:44

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef G4DETECTORS_PHG4CYLINDERCELLDEFS_H
0004 #define G4DETECTORS_PHG4CYLINDERCELLDEFS_H
0005 
0006 namespace PHG4CylinderCellDefs
0007 {
0008   typedef unsigned int keytype;
0009   static unsigned int keybits{8};
0010   static unsigned int cell_idbits{32 - keybits};
0011   enum
0012   {
0013     undefined = 0,
0014     sizebinning = 1,
0015     etaphibinning = 2,
0016     etaslatbinning = 3,
0017     spacalbinning = 4
0018   };
0019 }  // namespace PHG4CylinderCellDefs
0020 
0021 #endif