1 |
//--------------------------------------------------------------------------------------------------
|
2 |
// $Id: FillerMetaInfos.h,v 1.3 2008/06/18 19:17:21 loizides Exp $
|
3 |
//
|
4 |
// FillerMetaInfos
|
5 |
//
|
6 |
// Authors: C.Loizides
|
7 |
//--------------------------------------------------------------------------------------------------
|
8 |
|
9 |
#ifndef TREEFILLER_FILLERMETAINFOS_H
|
10 |
#define TREEFILLER_FILLERMETAINFOS_H
|
11 |
|
12 |
#include "FWCore/ParameterSet/interface/ParameterSet.h"
|
13 |
#include "MitAna/DataUtil/interface/TreeWriter.h"
|
14 |
#include "MitAna/DataTree/interface/GlobalMuon.h"
|
15 |
#include "MitAna/DataTree/interface/Muon.h"
|
16 |
#include "MitAna/DataTree/interface/Track.h"
|
17 |
#include "MitAna/DataTree/interface/Array.h"
|
18 |
#include "MitProd/TreeService/interface/TreeService.h"
|
19 |
#include "MitProd/TreeFiller/interface/BaseFiller.h"
|
20 |
|
21 |
namespace mithep
|
22 |
{
|
23 |
class FillerMetaInfos : public BaseFiller
|
24 |
{
|
25 |
public:
|
26 |
FillerMetaInfos(const edm::ParameterSet&);
|
27 |
~FillerMetaInfos();
|
28 |
|
29 |
void BookDataBlock(TreeWriter *tws);
|
30 |
void FillDataBlock(const edm::Event&, const edm::EventSetup&);
|
31 |
void ResolveLinks (const edm::Event&, const edm::EventSetup&);
|
32 |
|
33 |
private:
|
34 |
|
35 |
};
|
36 |
}
|
37 |
#endif
|