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
MCPdgIndexFilter Class Reference

#include <MCPdgIndexFilter.h>

Inheritance diagram for MCPdgIndexFilter:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual bool filter (edm::Event &, const edm::EventSetup &)
 
 MCPdgIndexFilter (const edm::ParameterSet &)
 
 ~MCPdgIndexFilter ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

bool pass (const edm::Event &)
 

Private Attributes

const std::vector< unsigned > index
 
const unsigned maxIndex
 
const std::vector< int > pdgID
 
const std::string tag
 
const bool taggingMode
 
const edm::EDGetTokenT
< edm::HepMCProduct
token_
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 24 of file MCPdgIndexFilter.h.

Constructor & Destructor Documentation

MCPdgIndexFilter::MCPdgIndexFilter ( const edm::ParameterSet cfg)
explicit

Definition at line 5 of file MCPdgIndexFilter.cc.

References index, pdgID, tag, and taggingMode.

5  :
6  token_(consumes<edm::HepMCProduct>(cfg.getUntrackedParameter("moduleLabel",std::string("generator")))),
7  pdgID(cfg.getParameter<std::vector<int> >("PdgId")),
8  index(cfg.getParameter<std::vector<unsigned> >("Index")),
9  maxIndex(*std::max_element(index.begin(),index.end())),
10  taggingMode(cfg.getUntrackedParameter<bool>("TagMode",false)),
11  tag(cfg.getUntrackedParameter<std::string>("Tag",""))
12 {
13  if (pdgID.size() != index.size())
14  edm::LogWarning("MCPdgIndexFilter")
15  << "Configuration Error :"
16  << "Sizes of array parameters 'PdgId' and 'Index' differ.";
17 
18  if (taggingMode) {
19  produces<bool>(tag);
20  edm::LogInfo("TagMode") << "Filter result in '" << tag << "', filtering disabled.";
21  }
22 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
const std::string tag
const bool taggingMode
const std::vector< unsigned > index
const unsigned maxIndex
const edm::EDGetTokenT< edm::HepMCProduct > token_
const std::vector< int > pdgID
MCPdgIndexFilter::~MCPdgIndexFilter ( )
inline

Definition at line 27 of file MCPdgIndexFilter.h.

27 {};

Member Function Documentation

bool MCPdgIndexFilter::filter ( edm::Event evt,
const edm::EventSetup  
)
virtual

Implements edm::EDFilter.

Definition at line 25 of file MCPdgIndexFilter.cc.

References LogDebug, pass(), edm::Event::put(), query::result, tag, and taggingMode.

25  {
26  bool result = pass(evt);
27  LogDebug("FilterResult") << (result?"Pass":"Fail");
28  if (!taggingMode) return result;
29  evt.put( std::auto_ptr<bool>(new bool(result)), tag);
30  return true;
31 }
#define LogDebug(id)
const std::string tag
const bool taggingMode
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
tuple result
Definition: query.py:137
bool pass(const edm::Event &)
bool MCPdgIndexFilter::pass ( const edm::Event evt)
private

Definition at line 34 of file MCPdgIndexFilter.cc.

References MCTruth::genEvent, edm::Event::getByToken(), i, index, j, LogDebug, maxIndex, AlCaHLTBitMon_ParallelJobs::p, pdgID, and token_.

Referenced by filter().

34  {
36  evt.getByToken(token_, hepmc);
37 
38  const HepMC::GenEvent * genEvent = hepmc->GetEvent();
39 
40  HepMC::GenEvent::particle_const_iterator
41  p(genEvent->particles_begin()),
42  p_end(genEvent->particles_end());
43 
44  for ( unsigned i=0; p!=p_end && i<=maxIndex; ++p, i++ ) {
45  LogDebug("Particle") << "index: " << i << " pdgID: " << (*p)->pdg_id();
46  for (unsigned j = 0; j < pdgID.size(); j++) {
47  if (i==index[j] && pdgID[j] != (*p)->pdg_id())
48  return false;
49  }
50  }
51  return true;
52 }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
int j
Definition: DBlmapReader.cc:9
const std::vector< unsigned > index
tuple genEvent
Definition: MCTruth.py:33
const unsigned maxIndex
const edm::EDGetTokenT< edm::HepMCProduct > token_
const std::vector< int > pdgID

Member Data Documentation

const std::vector<unsigned> MCPdgIndexFilter::index
private

Definition at line 34 of file MCPdgIndexFilter.h.

Referenced by BeautifulSoup.PageElement::_invert(), MCPdgIndexFilter(), and pass().

const unsigned MCPdgIndexFilter::maxIndex
private

Definition at line 35 of file MCPdgIndexFilter.h.

Referenced by pass().

const std::vector<int> MCPdgIndexFilter::pdgID
private

Definition at line 33 of file MCPdgIndexFilter.h.

Referenced by MCPdgIndexFilter(), and pass().

const std::string MCPdgIndexFilter::tag
private

Definition at line 37 of file MCPdgIndexFilter.h.

Referenced by filter(), MCPdgIndexFilter(), and Inspector.Inspector::SetTag().

const bool MCPdgIndexFilter::taggingMode
private

Definition at line 36 of file MCPdgIndexFilter.h.

Referenced by filter(), and MCPdgIndexFilter().

const edm::EDGetTokenT<edm::HepMCProduct> MCPdgIndexFilter::token_
private

Definition at line 32 of file MCPdgIndexFilter.h.

Referenced by pass().