CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
TestBXVectorRefProducer Class Reference

#include <HLTrigger/TestBXVectorRefProducer/plugins/TestBXVectorRefProducer.cc>

Inheritance diagram for TestBXVectorRefProducer:
edm::stream::EDProducer<>

Public Member Functions

 TestBXVectorRefProducer (const edm::ParameterSet &)
 
 ~TestBXVectorRefProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

void beginStream (edm::StreamID) override
 
void endStream () override
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

bool doRefs_
 
edm::InputTag src_
 
edm::EDGetTokenT< l1t::JetBxCollectiontoken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Description: Simple testing producer to test storing of Ref<BXVector> (example of <l1t::JetRef>) in the Event.

Implementation: Pick up the BXVector<l1t::Jet> from the event and try to store the Refs back into the Event.

Definition at line 39 of file TestBXVectorRefProducer.cc.

Constructor & Destructor Documentation

◆ TestBXVectorRefProducer()

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

Definition at line 73 of file TestBXVectorRefProducer.cc.

References doRefs_, edm::ParameterSet::getParameter(), src_, and token_.

73  {
74  //now do what ever other initialization is needed
75  src_ = iConfig.getParameter<edm::InputTag>("src");
76  doRefs_ = iConfig.getParameter<bool>("doRefs");
77  token_ = consumes<l1t::JetBxCollection>(src_);
78 
79  //register your products
80  produces<vector<int>>("jetPt").setBranchAlias("jetPt");
81 
82  if (doRefs_) {
83  produces<l1t::JetRefVector>("l1tJetRef").setBranchAlias("l1tJetRef");
84  }
85 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
edm::EDGetTokenT< l1t::JetBxCollection > token_

◆ ~TestBXVectorRefProducer()

TestBXVectorRefProducer::~TestBXVectorRefProducer ( )
override

Definition at line 87 of file TestBXVectorRefProducer.cc.

87  {
88  // do anything here that needs to be done at destruction time
89  // (e.g. close files, deallocate resources etc.)
90 }

Member Function Documentation

◆ beginStream()

void TestBXVectorRefProducer::beginStream ( edm::StreamID  )
overrideprivate

Definition at line 131 of file TestBXVectorRefProducer.cc.

131 {}

◆ endStream()

void TestBXVectorRefProducer::endStream ( )
overrideprivate

Definition at line 134 of file TestBXVectorRefProducer.cc.

134 {}

◆ fillDescriptions()

void TestBXVectorRefProducer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 169 of file TestBXVectorRefProducer.cc.

References edm::ConfigurationDescriptions::addDefault(), and submitPVResolutionJobs::desc.

169  {
170  //The following says we do not know what parameters are allowed so do no validation
171  // Please change this to state exactly what you do use, even if it is no parameters
173  desc.setUnknown();
174  descriptions.addDefault(desc);
175 }
void addDefault(ParameterSetDescription const &psetDescription)

◆ produce()

void TestBXVectorRefProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 97 of file TestBXVectorRefProducer.cc.

References doRefs_, iEvent, PDWG_EXODelayedJetMET_cff::jets, eostools::move(), findQualityFiles::size, and token_.

97  {
98  using namespace edm;
99 
100  unique_ptr<vector<int>> jetMom(new vector<int>);
101  unique_ptr<l1t::JetRefVector> jetRef(new l1t::JetRefVector);
102 
103  // retrieve the tracks
105  iEvent.getByToken(token_, jets);
106  if (!jets.isValid())
107  return;
108 
109  const int size = jets->size();
110  jetMom->reserve(size);
111 
113 
114  for (iter = jets->begin(0); iter != jets->end(0); ++iter) {
115  jetMom->push_back(iter->pt());
116 
117  l1t::JetRef myref(jets, jets->key(iter));
118  jetRef->push_back(myref);
119 
120  } // end for
121 
122  iEvent.put(std::move(jetMom), "jetPt");
123 
124  if (doRefs_)
125  iEvent.put(std::move(jetRef), "l1tJetRef");
126 
127  return;
128 }
size
Write out results.
std::vector< T >::const_iterator const_iterator
Definition: BXVector.h:18
int iEvent
Definition: GenABIO.cc:224
edm::EDGetTokenT< l1t::JetBxCollection > token_
HLT enums.
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ doRefs_

bool TestBXVectorRefProducer::doRefs_
private

Definition at line 57 of file TestBXVectorRefProducer.cc.

Referenced by produce(), and TestBXVectorRefProducer().

◆ src_

edm::InputTag TestBXVectorRefProducer::src_
private

Definition at line 58 of file TestBXVectorRefProducer.cc.

Referenced by TestBXVectorRefProducer().

◆ token_

edm::EDGetTokenT<l1t::JetBxCollection> TestBXVectorRefProducer::token_
private

Definition at line 59 of file TestBXVectorRefProducer.cc.

Referenced by produce(), and TestBXVectorRefProducer().