Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:20

0001 #ifndef PHOOL_SPHENIX_CONSTANTS_H
0002 #define PHOOL_SPHENIX_CONSTANTS_H
0003 /*!
0004  * \file sphenix_constants.h
0005  * \author Hugo Pereira Da Costa <hugo.pereira-da-costa@cea.fr>
0006  * \brief convenient namespace to store a number of sphenix specific constants and avoid magic numbers multiplication
0007  */
0008 
0009 namespace sphenix_constants
0010 {
0011 
0012   //! time between RHIC crossings (ns)
0013   static constexpr double time_between_crossings = 106.65237;
0014   static constexpr double CF4_density = 3.86;  // mg / cm3 Tom Hemmick
0015 }  // namespace sphenix_constants
0016 #endif