CMS 3D CMS Logo

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