ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/src/SealModules.cc
Revision: 1.5
Committed: Wed Jun 18 13:23:23 2008 UTC (16 years, 10 months ago) by paus
Content type: text/plain
Branch: MAIN
Changes since 1.4: +10 -1 lines
Log Message:
Basic structure of Filling framework.

File Contents

# User Rev Content
1 paus 1.5 // $Id: SealModules.cc,v 1.4 2008/06/11 23:37:20 paus Exp $
2 loizides 1.1
3     #include "FWCore/PluginManager/interface/ModuleDef.h"
4     #include "FWCore/Framework/interface/MakerMacros.h"
5    
6 paus 1.5 #include "MitProd/TreeFiller/interface/FillMitTree.h"
7     // This below will disappear
8 loizides 1.1 #include "MitProd/TreeFiller/interface/FillGenParts.h"
9 bendavid 1.2 #include "MitProd/TreeFiller/interface/FillTracks.h"
10     #include "MitProd/TreeFiller/interface/FillMuons.h"
11     #include "MitProd/TreeFiller/interface/FillElectrons.h"
12 paus 1.5 #include "MitProd/TreeFiller/interface/FillGlobalMuons.h"
13 loizides 1.1
14 paus 1.5 using mithep::FillMitTree;
15     // This below will disappear
16 loizides 1.1 using mithep::FillGenParts;
17 bendavid 1.2 using mithep::FillTracks;
18     using mithep::FillMuons;
19     using mithep::FillElectrons;
20 paus 1.5 using mithep::FillGlobalMuons;
21 loizides 1.1
22     DEFINE_SEAL_MODULE();
23 paus 1.5 DEFINE_ANOTHER_FWK_MODULE(FillMitTree);
24     // This below will disappear
25 loizides 1.1 DEFINE_ANOTHER_FWK_MODULE(FillGenParts);
26 bendavid 1.2 DEFINE_ANOTHER_FWK_MODULE(FillTracks);
27     DEFINE_ANOTHER_FWK_MODULE(FillMuons);
28     DEFINE_ANOTHER_FWK_MODULE(FillElectrons);
29 paus 1.5 DEFINE_ANOTHER_FWK_MODULE(FillGlobalMuons);