Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:25

0001 #ifndef PhysicsTools_Heppy_Apc_h
0002 #define PhysicsTools_Heppy_Apc_h
0003 
0004 #include <cmath>
0005 #include <numeric>
0006 #include <vector>
0007 
0008 /*  Apc
0009  *
0010  *  Calculates the Apc event variable for a given input jet collection
0011  *
0012  */
0013 
0014 namespace heppy {
0015 
0016   struct Apc {
0017     static double getApcJetMetMin(const std::vector<double>& et,
0018                                   const std::vector<double>& px,
0019                                   const std::vector<double>& py,
0020                                   const double metx,
0021                                   const double mety);
0022   };
0023 
0024 };  // namespace heppy
0025 
0026 #endif  // Apc_h