CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
SiStripClusterizer Class Reference

#include <SiStripClusterizer.h>

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

Public Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 
 SiStripClusterizer (const edm::ParameterSet &conf)
 
- 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
 

Private Types

typedef edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > token_t
 
typedef std::vector< token_ttoken_v
 

Private Member Functions

template<class T >
bool findInput (const edm::EDGetTokenT< T > &, edm::Handle< T > &, const edm::Event &)
 

Private Attributes

std::unique_ptr< StripClusterizerAlgorithmalgorithm
 
const std::vector< edm::InputTaginputTags
 
token_v inputTokens
 

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

Definition at line 13 of file SiStripClusterizer.h.

Member Typedef Documentation

◆ token_t

Definition at line 23 of file SiStripClusterizer.h.

◆ token_v

typedef std::vector<token_t> SiStripClusterizer::token_v
private

Definition at line 24 of file SiStripClusterizer.h.

Constructor & Destructor Documentation

◆ SiStripClusterizer()

SiStripClusterizer::SiStripClusterizer ( const edm::ParameterSet conf)
explicit

Definition at line 8 of file SiStripClusterizer.cc.

9  : inputTags(conf.getParameter<std::vector<edm::InputTag>>("DigiProducersList")),
11  conf.getParameter<edm::ParameterSet>("Clusterizer"))) {
12  produces<edmNew::DetSetVector<SiStripCluster>>();
14  inputTags, [this](edm::InputTag const& tag) { return consumes<edm::DetSetVector<SiStripDigi>>(tag); });
15 }

References inputTags, inputTokens, makeGlobalPositionRcd_cfg::tag, and edm::vector_transform().

Member Function Documentation

◆ findInput()

template<class T >
bool SiStripClusterizer::findInput ( const edm::EDGetTokenT< T > &  tag,
edm::Handle< T > &  handle,
const edm::Event e 
)
inlineprivate

Definition at line 40 of file SiStripClusterizer.cc.

40  {
41  e.getByToken(tag, handle);
42  return handle.isValid();
43 }

References MillePedeFileConverter_cfg::e, patZpeak::handle, and makeGlobalPositionRcd_cfg::tag.

Referenced by produce().

◆ produce()

void SiStripClusterizer::produce ( edm::Event event,
const edm::EventSetup es 
)
override

Definition at line 17 of file SiStripClusterizer.cc.

17  {
18  auto output = std::make_unique<edmNew::DetSetVector<SiStripCluster>>();
19  output->reserve(10000, 4 * 10000);
20 
22  // edm::Handle< edmNew::DetSetVector<SiStripDigi> > inputNew;
23 
24  algorithm->initialize(es);
25 
26  for (auto const& token : inputTokens) {
27  if (findInput(token, inputOld, event))
28  algorithm->clusterize(*inputOld, *output);
29  // else if( findInput( tag, inputNew, event) ) algorithm->clusterize(*inputNew, *output);
30  else
31  edm::LogError("Input Not Found") << "[SiStripClusterizer::produce] "; // << tag;
32  }
33 
34  LogDebug("Output") << output->dataSize() << " clusters from " << output->size() << " modules";
35  output->shrink_to_fit();
36  event.put(std::move(output));
37 }

References algorithm, findInput(), inputTokens, LogDebug, eostools::move(), convertSQLitetoXML_cfg::output, and unpackBuffers-CaloStage2::token.

Member Data Documentation

◆ algorithm

std::unique_ptr<StripClusterizerAlgorithm> SiStripClusterizer::algorithm
private

Definition at line 22 of file SiStripClusterizer.h.

Referenced by produce().

◆ inputTags

const std::vector<edm::InputTag> SiStripClusterizer::inputTags
private

Definition at line 21 of file SiStripClusterizer.h.

Referenced by SiStripClusterizer().

◆ inputTokens

token_v SiStripClusterizer::inputTokens
private

Definition at line 25 of file SiStripClusterizer.h.

Referenced by produce(), and SiStripClusterizer().

convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:72
patZpeak.handle
handle
Definition: patZpeak.py:23
SiStripClusterizer::algorithm
std::unique_ptr< StripClusterizerAlgorithm > algorithm
Definition: SiStripClusterizer.h:22
SiStripClusterizer::inputTags
const std::vector< edm::InputTag > inputTags
Definition: SiStripClusterizer.h:21
edm::Handle
Definition: AssociativeIterator.h:50
edm::vector_transform
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11
SiStripClusterizer::findInput
bool findInput(const edm::EDGetTokenT< T > &, edm::Handle< T > &, const edm::Event &)
Definition: SiStripClusterizer.cc:40
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:233
edm::ParameterSet
Definition: ParameterSet.h:47
SiStripClusterizer::inputTokens
token_v inputTokens
Definition: SiStripClusterizer.h:25
makeGlobalPositionRcd_cfg.tag
tag
Definition: makeGlobalPositionRcd_cfg.py:6
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
eostools.move
def move(src, dest)
Definition: eostools.py:511
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
event
Definition: event.py:1
edm::InputTag
Definition: InputTag.h:15
StripClusterizerAlgorithmFactory::create
static std::unique_ptr< StripClusterizerAlgorithm > create(edm::ConsumesCollector &&, const edm::ParameterSet &)
Definition: StripClusterizerAlgorithmFactory.cc:8
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
unpackBuffers-CaloStage2.token
token
Definition: unpackBuffers-CaloStage2.py:316