ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Utils/interface/VertexTools.h
Revision: 1.1
Committed: Mon May 16 13:26:47 2011 UTC (13 years, 11 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_023, Mit_022a, Mit_022, Mit_021
Log Message:
add placeholders for vertex mva tools

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id $
3 //
4 // VertexTools
5 //
6 // Helper Class for photon Identification decisions.
7 //
8 // Authors: J.Bendavid
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITPHYSICS_UTILS_VERTEXTOOLS_H
12 #define MITPHYSICS_UTILS_VERTEXTOOLS_H
13
14 #include "MitAna/DataTree/interface/Photon.h"
15 #include "MitAna/DataTree/interface/Electron.h"
16 #include "MitAna/DataTree/interface/ElectronCol.h"
17 #include "MitAna/DataTree/interface/BaseVertex.h"
18 #include "MitAna/DataTree/interface/DecayParticleCol.h"
19 #include "MitAna/DataTree/interface/VertexCol.h"
20 #include "MitAna/DataTree/interface/BeamSpotCol.h"
21 #include "MitAna/DataTree/interface/TriggerObjectCol.h"
22 #include "MitCommon/MathTools/interface/MathUtils.h"
23 #include "MitPhysics/Utils/interface/VertexMVA.h"
24
25
26 namespace mithep {
27 class VertexTools {
28 public:
29 VertexTools();
30
31 static const Vertex* BestVtx(const VertexCol *c, const VertexMVA *mva);
32
33 ClassDef(VertexTools, 0) // Muon tools
34 };
35 }
36
37 #endif