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
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

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<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 13 of file SiStripClusterizer.h.

Member Typedef Documentation

Definition at line 25 of file SiStripClusterizer.h.

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

Definition at line 26 of file SiStripClusterizer.h.

Constructor & Destructor Documentation

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

Definition at line 9 of file SiStripClusterizer.cc.

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

10  : inputTags( conf.getParameter<std::vector<edm::InputTag> >("DigiProducersList") ),
12  produces< edmNew::DetSetVector<SiStripCluster> > ();
13  inputTokens = edm::vector_transform( inputTags, [this](edm::InputTag const & tag) { return consumes< edm::DetSetVector<SiStripDigi> >(tag);} );
14 }
T getParameter(std::string const &) const
static std::unique_ptr< StripClusterizerAlgorithm > create(const edm::ParameterSet &)
std::unique_ptr< StripClusterizerAlgorithm > algorithm
const std::vector< edm::InputTag > inputTags
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

Member Function Documentation

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

Definition at line 42 of file SiStripClusterizer.cc.

References edm::Event::getByToken(), and edm::HandleBase::isValid().

Referenced by produce().

42  {
43  e.getByToken( tag, handle);
44  return handle.isValid();
45 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
bool isValid() const
Definition: HandleBase.h:74
void SiStripClusterizer::produce ( edm::Event event,
const edm::EventSetup es 
)
override

Definition at line 17 of file SiStripClusterizer.cc.

References algorithm, findInput(), inputTokens, LogDebug, eostools::move(), and convertSQLitetoXML_cfg::output.

Referenced by SiStripClusterizer().

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

Member Data Documentation

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

Definition at line 24 of file SiStripClusterizer.h.

Referenced by produce().

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

Definition at line 27 of file SiStripClusterizer.h.

Referenced by produce(), and SiStripClusterizer().