CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Apc.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_Heppy_Apc_h
2 #define PhysicsTools_Heppy_Apc_h
3 
4 #include <cmath>
5 #include <numeric>
6 #include <vector>
7 
8 
9 /* Apc
10  *
11  * Calculates the Apc event variable for a given input jet collection
12  *
13  */
14 
15 namespace heppy {
16 
17 struct Apc {
18 
19  static double getApcJetMetMin( const std::vector<double>& et,
20  const std::vector<double>& px,
21  const std::vector<double>& py,
22  const double metx, const double mety);
23 
24 };
25 
26 };
27 
28 #endif // Apc_h
Definition: Apc.h:17
static double getApcJetMetMin(const std::vector< double > &et, const std::vector< double > &px, const std::vector< double > &py, const double metx, const double mety)
Definition: Apc.cc:14