CMS 3D CMS Logo

ShallowSimhitClustersProducer.cc
Go to the documentation of this file.
2 
10 
12  : clusters_token_(consumes<edmNew::DetSetVector<SiStripCluster>>(iConfig.getParameter<edm::InputTag>("Clusters"))),
16  edm::ESInputTag{"", iConfig.getParameter<std::string>("runningMode")})),
17  Prefix(iConfig.getParameter<std::string>("Prefix")),
18  runningmode_(iConfig.getParameter<std::string>("runningMode")) {
19  std::vector<edm::InputTag> simhits_tags = iConfig.getParameter<std::vector<edm::InputTag>>("InputTags");
20  for (const auto& itag : simhits_tags) {
21  simhits_tokens_.push_back(consumes<std::vector<PSimHit>>(itag));
22  }
23 
24  produces<std::vector<unsigned>>(Prefix + "hits");
25  produces<std::vector<float>>(Prefix + "strip");
26  produces<std::vector<float>>(Prefix + "localtheta");
27  produces<std::vector<float>>(Prefix + "localphi");
28  produces<std::vector<float>>(Prefix + "localx");
29  produces<std::vector<float>>(Prefix + "localy");
30  produces<std::vector<float>>(Prefix + "localz");
31  produces<std::vector<float>>(Prefix + "momentum");
32  produces<std::vector<float>>(Prefix + "energyloss");
33  produces<std::vector<float>>(Prefix + "time");
34  produces<std::vector<int>>(Prefix + "particle");
35  produces<std::vector<unsigned short>>(Prefix + "process");
36 }
37 
40 
41  int size = clustermap.size();
42  auto hits = std::make_unique<std::vector<unsigned>>(size, 0);
43  auto strip = std::make_unique<std::vector<float>>(size, -100);
44  auto localtheta = std::make_unique<std::vector<float>>(size, -100);
45  auto localphi = std::make_unique<std::vector<float>>(size, -100);
46  auto localx = std::make_unique<std::vector<float>>(size, -100);
47  auto localy = std::make_unique<std::vector<float>>(size, -100);
48  auto localz = std::make_unique<std::vector<float>>(size, -100);
49  auto momentum = std::make_unique<std::vector<float>>(size, 0);
50  auto energyloss = std::make_unique<std::vector<float>>(size, -1);
51  auto time = std::make_unique<std::vector<float>>(size, -1);
52  auto particle = std::make_unique<std::vector<int>>(size, -500);
53  auto process = std::make_unique<std::vector<unsigned short>>(size, 0);
54 
55  edm::ESHandle<TrackerGeometry> theTrackerGeometry = iSetup.getHandle(geomToken_);
59  iEvent.getByLabel("siStripClusters", "", clusters);
60 
61  for (auto& simhit_token : simhits_tokens_) {
63  iEvent.getByToken(simhit_token, simhits);
64  for (auto const& hit : *simhits) {
65  const uint32_t id = hit.detUnitId();
66  const StripGeomDetUnit* theStripDet = dynamic_cast<const StripGeomDetUnit*>(theTrackerGeometry->idToDet(id));
68 
69  const float driftedstrip_ = theStripDet->specificTopology().strip(hit.localPosition() + 0.5 * drift);
70  const float hitstrip_ = theStripDet->specificTopology().strip(hit.localPosition());
71 
72  shallow::CLUSTERMAP::const_iterator cluster = match_cluster(id, driftedstrip_, clustermap, *clusters);
73  if (cluster != clustermap.end()) {
74  unsigned i = cluster->second;
75  hits->at(i) += 1;
76  if (hits->at(i) == 1) {
77  strip->at(i) = hitstrip_;
78  localtheta->at(i) = hit.thetaAtEntry();
79  localphi->at(i) = hit.phiAtEntry();
80  localx->at(i) = hit.localPosition().x();
81  localy->at(i) = hit.localPosition().y();
82  localz->at(i) = hit.localPosition().z();
83  momentum->at(i) = hit.pabs();
84  energyloss->at(i) = hit.energyLoss();
85  time->at(i) = hit.timeOfFlight();
86  particle->at(i) = hit.particleType();
87  process->at(i) = hit.processType();
88  }
89  }
90  }
91  }
92 
93  iEvent.put(std::move(hits), Prefix + "hits");
94  iEvent.put(std::move(strip), Prefix + "strip");
95  iEvent.put(std::move(localtheta), Prefix + "localtheta");
96  iEvent.put(std::move(localphi), Prefix + "localphi");
97  iEvent.put(std::move(localx), Prefix + "localx");
98  iEvent.put(std::move(localy), Prefix + "localy");
99  iEvent.put(std::move(localz), Prefix + "localz");
100  iEvent.put(std::move(momentum), Prefix + "momentum");
101  iEvent.put(std::move(energyloss), Prefix + "energyloss");
102  iEvent.put(std::move(time), Prefix + "time");
103  iEvent.put(std::move(particle), Prefix + "particle");
104  iEvent.put(std::move(process), Prefix + "process");
105 }
106 
107 shallow::CLUSTERMAP::const_iterator ShallowSimhitClustersProducer::match_cluster(
108  const unsigned& id,
109  const float& strip_,
110  const shallow::CLUSTERMAP& clustermap,
112  shallow::CLUSTERMAP::const_iterator cluster = clustermap.end();
114  if (clustersDetSet != clusters.end()) {
115  edmNew::DetSet<SiStripCluster>::const_iterator left, right = clustersDetSet->begin();
116  while (right != clustersDetSet->end() && strip_ > right->barycenter())
117  right++;
118  left = right - 1;
119  if (right != clustersDetSet->end() && right != clustersDetSet->begin()) {
120  unsigned firstStrip =
121  (right->barycenter() - strip_) < (strip_ - left->barycenter()) ? right->firstStrip() : left->firstStrip();
122  cluster = clustermap.find(std::make_pair(id, firstStrip));
123  } else if (right != clustersDetSet->begin())
124  cluster = clustermap.find(std::make_pair(id, left->firstStrip()));
125  else
126  cluster = clustermap.find(std::make_pair(id, right->firstStrip()));
127  }
128  return cluster;
129 }
size
Write out results.
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
LocalVector drift(const StripGeomDetUnit *, const MagneticField &, const SiStripLorentzAngle &)
Definition: ShallowTools.cc:36
shallow::CLUSTERMAP::const_iterator match_cluster(const unsigned &, const float &, const shallow::CLUSTERMAP &, const edmNew::DetSetVector< SiStripCluster > &) const
std::vector< edm::EDGetTokenT< std::vector< PSimHit > > > simhits_tokens_
data_type const * const_iterator
Definition: DetSetNew.h:31
const edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleRcd > laToken_
const_iterator end(bool update=false) const
virtual float strip(const LocalPoint &) const =0
int iEvent
Definition: GenABIO.cc:224
ShallowSimhitClustersProducer(const edm::ParameterSet &)
virtual const StripTopology & specificTopology() const
Returns a reference to the strip proxy topology.
const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusters_token_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
const_iterator begin(bool update=false) const
void produce(edm::Event &, const edm::EventSetup &) override
CLUSTERMAP make_cluster_map(const edm::Event &, const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > &)
Definition: ShallowTools.cc:12
HLT enums.
std::map< std::pair< uint32_t, uint16_t >, unsigned int > CLUSTERMAP
Definition: ShallowTools.h:21
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken_
def move(src, dest)
Definition: eostools.py:511