ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Utils/interface/VertexMVA.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_029c, Mit_029b, Mit_029a, Mit_028a, Mit_028, Mit_027, Mit_027a, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_021, HEAD
Log Message:
add placeholders for vertex mva tools

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id $
3 //
4 // VertexMVA
5 //
6 // Helper Class for photon Identification decisions.
7 //
8 // Authors: J.Bendavid
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITPHYSICS_UTILS_VERTEXMVA_H
12 #define MITPHYSICS_UTILS_VERTEXMVA_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
24 namespace mithep {
25 class VertexMVA {
26 public:
27 VertexMVA();
28
29 Double_t GetProb(const Vertex *v) const;
30
31
32 ClassDef(VertexMVA, 0) // Vertex tools
33 };
34 }
35
36 #endif