All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BackTrackerLoader_module.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // Class: BackTrackerLoader
3 // Module Type: producer
4 // File: BackTrackerLoader.h
5 //
6 // Generated at Thu Jun 14 06:49:31 2012 by Brian Rebel using artmod
7 // from art v1_00_11.
8 ////////////////////////////////////////////////////////////////////////
9 
10 #include "art/Framework/Core/EDProducer.h"
11 #include "art/Framework/Core/ModuleMacros.h"
12 
15 
16 namespace cheat {
17  class BackTrackerLoader;
18 }
19 
20 class cheat::BackTrackerLoader : public art::EDProducer {
21 public:
22  explicit BackTrackerLoader(fhicl::ParameterSet const& p);
23 
24  virtual void produce(art::Event& e);
25 
26 private:
27  // Declare member data here.
28 };
29 
30 //------------------------------------------------------------------------------
31 cheat::BackTrackerLoader::BackTrackerLoader(fhicl::ParameterSet const& p) : EDProducer{p}
32 {
33  // Call appropriate Produces<>() functions here.
34 }
35 
36 //------------------------------------------------------------------------------
37 // the sole purpose of this module is to issue the Rebuild command to the
38 // BackTracker service. It should be put after all simulation data producing
39 // modules have run in the job, and only in jobs that create the simulation and
40 // then make use of the BackTracker in either cheating reconstruction modules
41 // or analyzers
42 void
44 {
45  art::ServiceHandle<cheat::ParticleInventoryService> pi_serv;
46  art::ServiceHandle<cheat::BackTrackerService> bt_serv;
47  pi_serv->Rebuild(e);
48  bt_serv->Rebuild(e);
49 }
50 
51 DEFINE_ART_MODULE(cheat::BackTrackerLoader)
pdgs p
Definition: selectors.fcl:22
virtual void produce(art::Event &e)
do i e
BackTrackerLoader(fhicl::ParameterSet const &p)