CMS 3D CMS Logo

SiStripRecHitConverter.cc
Go to the documentation of this file.
3 
5  : recHitConverterAlgorithm(conf) ,
6  matchedRecHitsTag( conf.getParameter<std::string>( "matchedRecHits" ) ),
7  rphiRecHitsTag( conf.getParameter<std::string>( "rphiRecHits" ) ),
8  stereoRecHitsTag( conf.getParameter<std::string>( "stereoRecHits" ) )
9 {
10  clusterProducer = consumes<edmNew::DetSetVector<SiStripCluster> >(conf.getParameter<edm::InputTag>("ClusterProducer"));
11 
12  produces<SiStripMatchedRecHit2DCollection>( matchedRecHitsTag );
13  produces<SiStripRecHit2DCollection>( rphiRecHitsTag );
14  produces<SiStripRecHit2DCollection>( stereoRecHitsTag );
15  produces<SiStripRecHit2DCollection>( rphiRecHitsTag + "Unmatched" );
16  produces<SiStripRecHit2DCollection>( stereoRecHitsTag + "Unmatched" );
17 }
18 
21 {
23 
25  e.getByToken(clusterProducer, clusters);
27  recHitConverterAlgorithm.run(clusters, output);
28  output.shrink_to_fit();
29  LogDebug("SiStripRecHitConverter") << "found\n"
30  << output.rphi->dataSize() << " clusters in mono detectors\n"
31  << output.stereo->dataSize() << " clusters in partners stereo detectors\n";
32 
34  e.put(std::move(output.rphi), rphiRecHitsTag );
35  e.put(std::move(output.stereo), stereoRecHitsTag );
36  e.put(std::move(output.rphiUnmatched), rphiRecHitsTag + "Unmatched");
37  e.put(std::move(output.stereoUnmatched), stereoRecHitsTag + "Unmatched");
38 
39 }
#define LogDebug(id)
T getParameter(std::string const &) const
std::unique_ptr< SiStripMatchedRecHit2DCollection > matched
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
void run(edm::Handle< edmNew::DetSetVector< SiStripCluster > > input, products &output)
std::unique_ptr< SiStripRecHit2DCollection > rphi
void produce(edm::Event &, const edm::EventSetup &) override
std::unique_ptr< SiStripRecHit2DCollection > stereo
SiStripRecHitConverter(const edm::ParameterSet &)
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusterProducer
std::unique_ptr< SiStripRecHit2DCollection > stereoUnmatched
std::unique_ptr< SiStripRecHit2DCollection > rphiUnmatched
SiStripRecHitConverterAlgorithm recHitConverterAlgorithm
def move(src, dest)
Definition: eostools.py:511