CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::HiMixingModule Class Reference
Inheritance diagram for edm::HiMixingModule:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 HiMixingModule (const edm::ParameterSet &)
 
 ~HiMixingModule ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
bool verifyRegistry (std::string object, std::string subdet, InputTag &tag, std::string &label)
 

Private Attributes

std::vector< HiMixingWorkerBase * > workers_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 148 of file HiMixingModule.cc.

Constructor & Destructor Documentation

HiMixingModule::HiMixingModule ( const edm::ParameterSet pset)
explicit

Definition at line 176 of file HiMixingModule.cc.

References gather_cfg::cout, edm::InputTag::encode(), edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), edm::ParameterSet::getParameterNames(), collect_tpl::input, edm::InputTag::instance(), edm::InputTag::label(), label, h::names, GlobalPosition_Frontier_DevDB_cff::tag, and o2o::tags.

177 {
178 
179  ParameterSet ps=pset.getParameter<ParameterSet>("mixObjects");
180  std::vector<std::string> names = ps.getParameterNames();
181  std::vector<std::string> simtags = pset.getParameter<std::vector<std::string> >("srcSIM");
182  std::vector<std::string> gentags = pset.getParameter<std::vector<std::string> >("srcGEN");
183 
184  if(simtags.size() != gentags.size()) LogError("MixingInput")<<"Generator and Simulation input lists are not matching each other"<<endl;
185 
186  for (std::vector<string>::iterator it=names.begin();it!= names.end();++it){
187 
188  ParameterSet pstag=ps.getParameter<ParameterSet>((*it));
189  if (!pstag.exists("type")) continue; //to allow replacement by empty pset
190  std::string object = pstag.getParameter<std::string>("type");
191  std::vector<InputTag> tags=pstag.getParameter<std::vector<InputTag> >("input");
192 
193  std::string signal;
194  for(size_t itag = 0; itag < tags.size(); ++itag){
195  InputTag tag=tags[itag];
196  std::vector<InputTag> inputs;
197 
198  for(size_t input = 0; input < simtags.size(); ++input){
199  if (object=="HepMCProduct") signal = gentags[input];
200  else signal = simtags[input];
201  inputs.push_back(InputTag(signal,tag.instance()));
202  }
203 
204  std::string label=tag.label()+tag.instance();
205  // verifyRegistry(object,std::string(""),tag,label);
206  if (object=="HepMCProduct"){
207  workers_.push_back(new HiMixingWorker<HepMCProduct>(object,inputs,label));
208  produces<CrossingFrame<HepMCProduct> >(label);
209  }else if (object=="SimTrack"){
210  workers_.push_back(new HiMixingWorker<SimTrack>(object,inputs,label));
211  produces<CrossingFrame<SimTrack> >(label);
212  }else if (object=="SimVertex"){
213  workers_.push_back(new HiMixingWorker<SimVertex>(object,inputs,label));
214  produces<CrossingFrame<SimVertex> >(label);
215  }else if (object=="PSimHit"){
216  workers_.push_back(new HiMixingWorker<PSimHit>(object,inputs,label));
217  produces<CrossingFrame<PSimHit> >(label);
218  }else if (object=="PCaloHit"){
219  workers_.push_back(new HiMixingWorker<PCaloHit>(object,inputs,label));
220  produces<CrossingFrame<PCaloHit> >(label);
221  }else LogInfo("Error")<<"What the hell is this object?!";
222 
223  LogInfo("MixingModule") <<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label;
224  cout<<"The COUT : "<<"Will mix "<<object<<"s with InputTag= "<<tag.encode()<<", label will be "<<label<<endl;
225  }
226  }
227 }
T getParameter(std::string const &) const
const std::string & label
Definition: MVAComputer.cc:186
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::string encode() const
Definition: InputTag.cc:72
std::vector< std::string > getParameterNames() const
tuple input
Definition: collect_tpl.py:10
tuple tags
Definition: o2o.py:248
std::vector< HiMixingWorkerBase * > workers_
std::string const & label() const
Definition: InputTag.h:25
tuple cout
Definition: gather_cfg.py:41
static const HistoName names[]
std::string const & instance() const
Definition: InputTag.h:26
HiMixingModule::~HiMixingModule ( )

Definition at line 230 of file HiMixingModule.cc.

231 {
232 
233  // do anything here that needs to be done at desctruction time
234  // (e.g. close files, deallocate resources etc.)
235 
236 }

Member Function Documentation

void HiMixingModule::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 256 of file HiMixingModule.cc.

257 {
258 }
void HiMixingModule::endJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 262 of file HiMixingModule.cc.

262  {
263 }
void HiMixingModule::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDProducer.

Definition at line 245 of file HiMixingModule.cc.

References i.

246 {
247  using namespace edm;
248 
249  for(size_t i = 0; i < workers_.size(); ++i){
250  (workers_[i])->addSignals(iEvent);
251  }
252 }
int i
Definition: DBlmapReader.cc:9
std::vector< HiMixingWorkerBase * > workers_
bool HiMixingModule::verifyRegistry ( std::string  object,
std::string  subdet,
InputTag tag,
std::string &  label 
)
private

Definition at line 265 of file HiMixingModule.cc.

References edm::BranchDescription::className(), newFWLiteAna::found, edm::InputTag::instance(), edm::InputTag::label(), edm::BranchDescription::moduleLabel(), dbtoconf::object, edm::BranchDescription::productInstanceName(), and edm::ConstProductRegistry::productList().

265  {
266  // verify that the given product exists in the product registry
267  // and create the label to be given to the CrossingFrame
268 
270  // Loop over provenance of products in registry.
271  std::string lookfor;
272  if (object=="HepMCProduct") lookfor="edm::"+object;//exception for HepMCProduct
273  else if (object=="edm::HepMCProduct") lookfor=object;
274  else lookfor="std::vector<"+object+">";
275  bool found=false;
276  for (edm::ProductRegistry::ProductList::const_iterator it = reg->productList().begin();
277  it != reg->productList().end(); ++it) {
278  // See FWCore/Framework/interface/BranchDescription.h
279  // BranchDescription contains all the information for the product.
280  edm::BranchDescription desc = it->second;
281  if (desc.className()==lookfor && desc.moduleLabel()==tag.label() && desc.productInstanceName()==tag.instance()) {
282  label=desc.moduleLabel()+desc.productInstanceName();
283  found=true;
284  /*
285  wantedBranches_.push_back(desc.friendlyClassName() + '_' +
286  desc.moduleLabel() + '_' +
287  desc.productInstanceName());
288  */
289  break;
290  }
291  }
292  if (!found) {
293  LogWarning("MixingModule")<<"!!!!!!!!!Could not find in registry requested object: "<<object<<" with "<<tag<<".\nWill NOT be considered for mixing!!!!!!!!!";
294  return false;
295  }
296 
297  return true;
298 }
const std::string & label
Definition: MVAComputer.cc:186
std::string const & className() const
std::string const & moduleLabel() const
std::string const & productInstanceName() const
list object
Definition: dbtoconf.py:77
std::string const & label() const
Definition: InputTag.h:25
std::string const & instance() const
Definition: InputTag.h:26
ProductList const & productList() const

Member Data Documentation

std::vector<HiMixingWorkerBase *> edm::HiMixingModule::workers_
private

Definition at line 160 of file HiMixingModule.cc.