CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
pat::PATTriggerObjectStandAloneSlimmer Class Reference

Packs filter labels and/or 4-vectors of a pat::TriggerObjectStandAloneCollection. More...

Inheritance diagram for pat::PATTriggerObjectStandAloneSlimmer:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 PATTriggerObjectStandAloneSlimmer (const edm::ParameterSet &iConfig)
 
 ~PATTriggerObjectStandAloneSlimmer ()
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, std::unordered_multimap< std::string, edm::ProductResolverIndex > const &iIndicies, std::string const &moduleLabel)
 
virtual ~ProducerBase () noexcept(false)
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

virtual void produce (edm::StreamID, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
 

Private Attributes

bool packFilterLabels_
 
bool packP4_
 
const edm::EDGetTokenT< TriggerObjectStandAloneCollectionsrcToken_
 
const edm::EDGetTokenT< edm::TriggerResultstriggerResultsToken_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase 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::global::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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

Packs filter labels and/or 4-vectors of a pat::TriggerObjectStandAloneCollection.

Author
Giovanni Petrucciani

Definition at line 26 of file PATTriggerObjectStandAloneSlimmer.cc.

Constructor & Destructor Documentation

PATTriggerObjectStandAloneSlimmer::PATTriggerObjectStandAloneSlimmer ( const edm::ParameterSet iConfig)
explicit

Definition at line 50 of file PATTriggerObjectStandAloneSlimmer.cc.

References packFilterLabels_.

50  :
51  srcToken_( consumes<TriggerObjectStandAloneCollection>( iConfig.getParameter<edm::InputTag>( "src" ) ) ),
52  triggerResultsToken_( consumes< edm::TriggerResults >( iConfig.getParameter< edm::InputTag >( "triggerResults" ) ) ),
53  packFilterLabels_( iConfig.getParameter<bool>("packFilterLabels") ),
54  packP4_( iConfig.getParameter<bool>("packP4") )
55 {
56  produces<TriggerObjectStandAloneCollection>();
57  if (packFilterLabels_) {
58  produces<std::vector<std::string>>("filterLabels");
59  }
60 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< TriggerObjectStandAloneCollection > srcToken_
const edm::EDGetTokenT< edm::TriggerResults > triggerResultsToken_
pat::PATTriggerObjectStandAloneSlimmer::~PATTriggerObjectStandAloneSlimmer ( )
inline

Definition at line 31 of file PATTriggerObjectStandAloneSlimmer.cc.

References iEvent, and produce().

31 {};

Member Function Documentation

void PATTriggerObjectStandAloneSlimmer::produce ( edm::StreamID  ,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
overrideprivatevirtual

Definition at line 62 of file PATTriggerObjectStandAloneSlimmer.cc.

References DEFINE_FWK_MODULE, edm::Event::getByToken(), eostools::move(), MuonAssociatorByHits_cfi::obj, packFilterLabels_, packP4_, edm::Event::put(), TrackRefitter_38T_cff::src, srcToken_, triggerResults, and triggerResultsToken_.

Referenced by ~PATTriggerObjectStandAloneSlimmer().

63 {
65  iEvent.getByToken( srcToken_, src );
67  iEvent.getByToken( triggerResultsToken_, triggerResults );
68 
69  auto slimmed = std::make_unique<TriggerObjectStandAloneCollection>(*src);
70 
71  if (packFilterLabels_) {
72  std::set<std::string> allLabels;
73  for (auto & obj : *slimmed) {
74  obj.packFilterLabels(iEvent,*triggerResults);
75  }
76 
77  }
78  if (packP4_) {
79  for (TriggerObjectStandAlone & obj : *slimmed) {
80  obj.packP4();
81  }
82  }
83  iEvent.put(std::move(slimmed) );
84 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
static std::string const triggerResults
Definition: EdmProvDump.cc:41
const edm::EDGetTokenT< TriggerObjectStandAloneCollection > srcToken_
const edm::EDGetTokenT< edm::TriggerResults > triggerResultsToken_
def move(src, dest)
Definition: eostools.py:510
Analysis-level trigger object class (stand-alone)

Member Data Documentation

bool pat::PATTriggerObjectStandAloneSlimmer::packFilterLabels_
private
bool pat::PATTriggerObjectStandAloneSlimmer::packP4_
private

Definition at line 40 of file PATTriggerObjectStandAloneSlimmer.cc.

Referenced by produce().

const edm::EDGetTokenT<TriggerObjectStandAloneCollection> pat::PATTriggerObjectStandAloneSlimmer::srcToken_
private

Definition at line 37 of file PATTriggerObjectStandAloneSlimmer.cc.

Referenced by produce().

const edm::EDGetTokenT< edm::TriggerResults > pat::PATTriggerObjectStandAloneSlimmer::triggerResultsToken_
private

Definition at line 38 of file PATTriggerObjectStandAloneSlimmer.cc.

Referenced by produce().