Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:15:01

0001 /** @file AjParameters.hh
0002     @author Kolja Kauder
0003     @brief Common parameters
0004     @details Used to quickly include the same parameters into different macros.
0005     @date Jul 29, 2015   
0006  */
0007 
0008 #ifndef AJPARAMETERS_HH
0009 #define AJPARAMETERS_HH
0010 
0011 namespace AjParameters{
0012 
0013   const double jet_ptmin = 10.0;     ///< Min jet pT
0014   const double jet_ptmax = 1000.0;   ///< Max jet pT
0015   
0016   const double LeadPtMin=20.0;      ///< Min leading jet pT 
0017   const double SubLeadPtMin=10.0;   ///< Min sub-leading jet pT 
0018   const double dPhiCut = 0.4;       ///< Dijet acceptance angle,  |&phi;1 - &phi;2 -&pi;| < dPhiCut
0019   
0020   const double max_track_rap = 1.0; ///< Constituent &eta; acceptance
0021   const double PtConsHi=2.0;        ///< High constituent pT cut (low cut is specified in wrapper)
0022 
0023 
0024   // Event quality
0025   const double VzCut=10;            ///< Vertex z 
0026   
0027   // Track quality
0028   const double DcaCut=1.0;               ///< track dca
0029   const int NMinFit=20;                  ///< minimum number of fit points for tracks
0030   const double FitOverMaxPointsCut=0.52; ///< NFit / NFitPossible
0031 }
0032 
0033 #endif // AJPARAMETERS_HH