1 |
rwolf |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
rwolf |
1.2 |
// $Id: FillerNSVFit.h,v 1.1 2011/05/05 12:43:18 rwolf Exp $
|
3 |
rwolf |
1.1 |
//
|
4 |
|
|
// FillerNSVFit
|
5 |
|
|
//
|
6 |
|
|
// Implementation of a filler to fill nsv fit information for resonances that decay into tau leptons
|
7 |
|
|
// (subsequenctly decaying into electrons, muons or hadrons) from EDM.
|
8 |
|
|
//
|
9 |
|
|
// Authors: R.Wolf
|
10 |
|
|
//--------------------------------------------------------------------------------------------------
|
11 |
|
|
|
12 |
|
|
#ifndef MITPROD_TREEFILLER_FILLERNSVFIT_H
|
13 |
|
|
#define MITPROD_TREEFILLER_FILLERNSVFIT_H
|
14 |
|
|
|
15 |
|
|
#include "MitAna/DataTree/interface/NSVFitFwd.h"
|
16 |
|
|
#include "MitProd/TreeFiller/interface/BaseFiller.h"
|
17 |
|
|
|
18 |
|
|
namespace mithep
|
19 |
|
|
{
|
20 |
|
|
class FillerNSVFit : public BaseFiller
|
21 |
|
|
{
|
22 |
|
|
public:
|
23 |
|
|
FillerNSVFit(const edm::ParameterSet &cfg, const char *name, bool active=1);
|
24 |
|
|
~FillerNSVFit();
|
25 |
|
|
|
26 |
|
|
void BookDataBlock(TreeWriter &tws);
|
27 |
|
|
void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
|
28 |
|
|
|
29 |
|
|
private:
|
30 |
|
|
std::string edmName_; // edm name of NSVFit collection
|
31 |
|
|
std::string mitName_; // mit name of NSVFit collection
|
32 |
|
|
mithep::NSVFitArr *hypotheses_; // array of NSVFit hypotheses (can in principle be more than one)
|
33 |
|
|
};
|
34 |
|
|
}
|
35 |
|
|
#endif
|