CMS 3D CMS Logo

CTPPSPixelRecHitProducer.cc
Go to the documentation of this file.
2 
4  src_ = conf.getParameter<edm::InputTag>("RPixClusterTag");
5  verbosity_ = conf.getUntrackedParameter<int>("RPixVerbosity");
6  tokenCTPPSPixelCluster_ = consumes<edm::DetSetVector<CTPPSPixelCluster> >(src_);
7  produces<edm::DetSetVector<CTPPSPixelRecHit> >();
8  pixelTopologyToken_ = esConsumes<PPSPixelTopology, PPSPixelTopologyRcd>();
9 }
10 
12 
15  desc.addUntracked<int>("RPixVerbosity", 0);
16  desc.add<edm::InputTag>("RPixClusterTag", edm::InputTag("ctppsPixelClusters"));
17  descriptions.add("ctppsPixelRecHits", desc);
18 }
19 
22  iEvent.getByToken(tokenCTPPSPixelCluster_, rpCl);
23 
25 
27 
28  // run reconstruction
29  if (!rpCl->empty())
30  run(*rpCl, output, *thePixelTopology);
31 
32  iEvent.put(std::make_unique<edm::DetSetVector<CTPPSPixelRecHit> >(output));
33 }
34 
37  const PPSPixelTopology &ppt) {
38  for (const auto &ds_cluster : input) {
39  edm::DetSet<CTPPSPixelRecHit> &ds_rechit = output.find_or_insert(ds_cluster.id);
40 
41  //calculate the cluster parameters and convert it into a rechit
42  cluster2hit_.buildHits(ds_cluster.id, ds_cluster.data, ds_rechit.data, ppt);
43  }
44 }
45 
CTPPSPixelRecHitProducer::src_
edm::InputTag src_
Definition: CTPPSPixelRecHitProducer.h:50
edm::DetSetVector< CTPPSPixelRecHit >
RPixClusterToHit::buildHits
void buildHits(unsigned int detId, const std::vector< CTPPSPixelCluster > &clusters, std::vector< CTPPSPixelRecHit > &hits, const PPSPixelTopology &ppt)
Definition: RPixClusterToHit.cc:9
input
static const std::string input
Definition: EdmProvDump.cc:48
CTPPSPixelRecHitProducer::tokenCTPPSPixelCluster_
edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelCluster > > tokenCTPPSPixelCluster_
Definition: CTPPSPixelRecHitProducer.h:51
edm::DetSet
Definition: DetSet.h:23
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:72
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89301
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::Handle
Definition: AssociativeIterator.h:50
CTPPSPixelRecHitProducer.h
CTPPSPixelRecHitProducer::~CTPPSPixelRecHitProducer
~CTPPSPixelRecHitProducer() override
Definition: CTPPSPixelRecHitProducer.cc:11
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
CTPPSPixelRecHitProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: CTPPSPixelRecHitProducer.cc:20
edm::ESHandle
Definition: DTSurvey.h:22
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
edm::ParameterSet
Definition: ParameterSet.h:47
CTPPSPixelRecHitProducer::cluster2hit_
RPixClusterToHit cluster2hit_
Definition: CTPPSPixelRecHitProducer.h:54
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:155
edm::EventSetup
Definition: EventSetup.h:58
CTPPSPixelRecHitProducer::verbosity_
int verbosity_
Definition: CTPPSPixelRecHitProducer.h:48
PPSPixelTopology
Definition: PPSPixelTopology.h:22
CTPPSPixelRecHitProducer
Definition: CTPPSPixelRecHitProducer.h:33
param_
struct @710 param_
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
CTPPSPixelRecHitProducer::run
void run(const edm::DetSetVector< CTPPSPixelCluster > &input, edm::DetSetVector< CTPPSPixelRecHit > &output, const PPSPixelTopology &ppt)
Definition: CTPPSPixelRecHitProducer.cc:35
edm::DetSet::data
collection_type data
Definition: DetSet.h:80
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
CTPPSPixelRecHitProducer::CTPPSPixelRecHitProducer
CTPPSPixelRecHitProducer(const edm::ParameterSet &param)
Definition: CTPPSPixelRecHitProducer.cc:3
CTPPSPixelRecHitProducer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: CTPPSPixelRecHitProducer.cc:13
edm::Event
Definition: Event.h:73
CTPPSPixelRecHitProducer::pixelTopologyToken_
edm::ESGetToken< PPSPixelTopology, PPSPixelTopologyRcd > pixelTopologyToken_
Definition: CTPPSPixelRecHitProducer.h:52
edm::InputTag
Definition: InputTag.h:15