test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SecSourceAnalyzer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SecSourceAnalyzer
4 // Class: SecSourceAnalyzer
5 //
13 //
14 // Original Author: Emilia Lubenova Becheva
15 // Created: Wed Apr 22 16:54:31 CEST 2009
16 //
17 //
18 
19 
20 // system include files
21 #include <memory>
22 #include <functional>
23 
24 // user include files
27 
31 
35 
41 
43 
45 
46 #include "SecSourceAnalyzer.h"
47 
48 #include "TH1F.h"
49 
50 //
51 // constructors and destructor
52 //
53 namespace edm
54 {
56  :minBunch_(0),
57  maxBunch_(0),
58  tag_(InputTag())
59 {
60 // int minb = minBunch_;
61 // int maxb = maxBunch_;
62  int averageNumber = 1;
64  std::unique_ptr<TH1F> histoName(new TH1F("h","",10,0,10));
65  bool playback = false;
66 
67  std::shared_ptr<PileUpConfig> conf(new PileUpConfig("input",averageNumber,histoName,playback));
68  input_.reset(new edm::PileUp(iConfig.getParameter<edm::ParameterSet>("input"),conf));
69 
70  dataStep2_ = iConfig.getParameter<bool>("dataStep2");
71 
72 
73  if (dataStep2_)
74  // The data file contain the PCrossingFrame<SimTrack>
75  label_ = iConfig.getParameter<edm::InputTag>("collPCF");
76  else
77  // The data file contain the SimTrack
78  label_ = iConfig.getParameter<edm::InputTag>("collSimTrack");
79 
80 }
81 
82 
84 {
85 }
86 
87 
88 //
89 // member functions
90 //
91 
92 // ------------ method called for each event ------------
93 void
95 {
96  using namespace std::placeholders;
98 
99  int nevt = 0 ;
100  for( int ibx = minBunch_ ; ibx <= maxBunch_ ; ++ibx )
101  {
102  if( ibx == 0 )
103  {
104  input_->readPileUp( iEvent.id(),
105  vectorEventIDs_[ ibx-minBunch_ ],
107  this, _1, iEvent.moduleCallingContext()), ibx,
108  iEvent.streamID());
109  }
110  else
111  {
112  input_->readPileUp( iEvent.id(),
113  vectorEventIDs_[ ibx-minBunch_ ],
115  this, _1),
116  ibx,
117  iEvent.streamID());
118  }
119 
120  nevt += vectorEventIDs_[ ibx-minBunch_ ].size() ;
121  }
122 
123  std::cout << "-> The std::vector<EventPrincipalVector> of the secondary source 'input' has been filled with "
124  << nevt << " element corresponding to " << maxBunch_-minBunch_+1
125  << " bunch." << std::endl;
126 }
127 
129  ModuleCallingContext const* mcc)
130  {
131  InternalContext internalContext(ep.id(), mcc);
132  ParentContext parentContext(&internalContext);
133  ModuleCallingContext moduleCallingContext(&moduleDescription());
134  ModuleContextSentry moduleContextSentry(&moduleCallingContext, parentContext);
135 
136  std::cout <<"-> Get the event: id " << ep.id() << std::endl;
137  std::cout << "-> dataStep2_ = " << dataStep2_ << std::endl;
138  tag_ = InputTag(label_);
139 
140  std::cout << "-> Will try to get the branch with the tag : " << tag_ << std::endl;
141  std::cout << " and the EventPrincipal ep with a size = " << ep.size() << std::endl;
142 
143  if (!dataStep2_){
144  // Get the SimTrack collection
145 
146  // default version changed to transmit vertexoffset
147  std::shared_ptr<Wrapper<std::vector<SimTrack> > const> shPtr =
148  getProductByTag<std::vector<SimTrack> >(ep, tag_, &moduleCallingContext);
149 
150  if (shPtr)
151  std::cout << "-> Could get SimTrack !" << std::endl;
152  else
153  std::cout << "-> Could not get SimTrack !" << std::endl;
154 
155  }
156  else{
157  // Get the PCrossingFrame collection given as signal
158 
159  // default version changed to transmit vertexoffset
160  tag_ = InputTag("CFwriter","g4SimHits");
161  std::shared_ptr<Wrapper<PCrossingFrame<SimTrack> > const> shPtr =
162  getProductByTag<PCrossingFrame<SimTrack> >(ep, tag_, &moduleCallingContext);
163 
164  if (shPtr)
165  std::cout << "-> Could get PCrossingFrame<SimTrack> !" << std::endl;
166  else
167  std::cout << "-> Could not get PCrossingFrame<SimTrack> !" << std::endl;
168 
169  }
170 
171  }
172 
173 
174 // ------------ method called once each job just before starting event loop ------------
175 void
177 {
178 }
179 
180 // ------------ method called once each job just after ending the event loop ------------
181 void
183  if (input_) input_->endStream();
184 }
185 
186 }//edm
virtual void analyze(const edm::Event &, const edm::EventSetup &) override
T getParameter(std::string const &) const
size_t size() const
Definition: Principal.cc:255
virtual void dummyFunction(EventPrincipal const &ep)
tuple histoFileName
Definition: diJetCalib.py:108
EventID const & id() const
ModuleDescription const & moduleDescription() const
Definition: EDAnalyzer.h:43
int iEvent
Definition: GenABIO.cc:230
ModuleCallingContext const * moduleCallingContext() const
Definition: Event.h:225
tuple averageNumber
set the number of pileup
SecSourceAnalyzer(const edm::ParameterSet &)
std::shared_ptr< PileUp > input_
edm::EventID id() const
Definition: EventBase.h:59
StreamID streamID() const
Definition: Event.h:80
std::vector< std::vector< edm::SecondaryEventIDAndFileInfo > > vectorEventIDs_
virtual void getBranches(EventPrincipal const &ep, ModuleCallingContext const *)
tuple cout
Definition: gather_cfg.py:145