File indexing completed on 2025-04-19 09:06:50
0001 #ifndef TOOLS_ALICECOMMON_HH
0002 #define TOOLS_ALICECOMMON_HH
0003
0004 #include "Rivet/Tools/Cuts.hh"
0005 #include "Rivet/Particle.hh"
0006
0007 namespace Rivet {
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 namespace ALICE
0018 {
0019
0020
0021
0022
0023
0024 const Cut V0Aacceptance = (Cuts::etaIn(+2.8,+5.1)&&(Cuts::abscharge3 > 0));
0025
0026
0027
0028
0029
0030 const Cut V0Cacceptance = (Cuts::etaIn(-3.7,-1.7)&&(Cuts::abscharge3 > 0));
0031
0032
0033
0034
0035
0036 const Cut CL0acceptance = (Cuts::etaIn(-2.0,2.0) && (Cuts::abscharge3 > 0));
0037
0038
0039
0040
0041
0042 const Cut CL1acceptance = (Cuts::etaIn(-1.4,1.4) && (Cuts::abscharge3 > 0));
0043
0044
0045
0046
0047
0048 const Cut Eta1acceptance = (Cuts::etaIn(-1,1) && (Cuts::abscharge3 > 0));
0049
0050
0051
0052
0053
0054 const Cut FASTORacceptance = CL0acceptance;
0055
0056 #if 0
0057
0058
0059
0060
0061
0062 const int PbId = (1000000000 +
0063 0*10000000 +
0064 82*10000 +
0065 208*10 +
0066 0*1);
0067 #endif
0068
0069
0070 }
0071 }
0072
0073 #endif