Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:40

0001 #ifndef DataFormats_Luminosity_LumiConstants_h
0002 #define DataFormats_Luminosity_LumiConstants_h
0003 
0004 // Various constants used by the lumi classes.
0005 
0006 namespace LumiConstants {
0007   static const unsigned int numOrbits = 262144;  // number of orbits per LS (2^18)
0008   static const unsigned int numBX = 3564;        // number of BX per orbit
0009   static const float bxSpacingExact = 24.95e-9;  // BX spacing (exact value)
0010   static const int bxSpacingInt = 25;            // BX spacing (in ns) -- "standard" value of 25
0011 }  // namespace LumiConstants
0012 
0013 #endif