1 |
loizides |
1.1 |
// #Id:$
|
2 |
|
|
|
3 |
|
|
#include "FWCore/PluginManager/interface/ModuleDef.h"
|
4 |
|
|
#include "FWCore/Framework/interface/MakerMacros.h"
|
5 |
|
|
|
6 |
|
|
#include "MitProd/TreeFiller/interface/FillGenParts.h"
|
7 |
bendavid |
1.2 |
#include "MitProd/TreeFiller/interface/FillTracks.h"
|
8 |
|
|
#include "MitProd/TreeFiller/interface/FillMuons.h"
|
9 |
|
|
#include "MitProd/TreeFiller/interface/FillElectrons.h"
|
10 |
loizides |
1.1 |
|
11 |
|
|
using mithep::FillGenParts;
|
12 |
bendavid |
1.2 |
using mithep::FillTracks;
|
13 |
|
|
using mithep::FillMuons;
|
14 |
|
|
using mithep::FillElectrons;
|
15 |
loizides |
1.1 |
|
16 |
|
|
DEFINE_SEAL_MODULE();
|
17 |
|
|
DEFINE_ANOTHER_FWK_MODULE(FillGenParts);
|
18 |
bendavid |
1.2 |
DEFINE_ANOTHER_FWK_MODULE(FillTracks);
|
19 |
|
|
DEFINE_ANOTHER_FWK_MODULE(FillMuons);
|
20 |
|
|
DEFINE_ANOTHER_FWK_MODULE(FillElectrons);
|
21 |
|
|
|