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
|