CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
ShallowSimhitClustersProducer Class Reference

#include <ShallowSimhitClustersProducer.h>

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

Public Member Functions

 ShallowSimhitClustersProducer (const edm::ParameterSet &)
 
- 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 Member Functions

shallow::CLUSTERMAP::const_iterator match_cluster (const unsigned &, const float &, const shallow::CLUSTERMAP &, const edmNew::DetSetVector< SiStripCluster > &) const
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

const edm::EDGetTokenT
< edmNew::DetSetVector
< SiStripCluster > > 
clusters_token_
 
const edm::ESGetToken
< TrackerGeometry,
TrackerDigiGeometryRecord
geomToken_
 
const edm::ESGetToken
< SiStripLorentzAngle,
SiStripLorentzAngleRcd
laToken_
 
const edm::ESGetToken
< MagneticField,
IdealMagneticFieldRecord
magFieldToken_
 
std::string Prefix
 
std::string runningmode_
 
std::vector< edm::EDGetTokenT
< std::vector< PSimHit > > > 
simhits_tokens_
 

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 18 of file ShallowSimhitClustersProducer.h.

Constructor & Destructor Documentation

ShallowSimhitClustersProducer::ShallowSimhitClustersProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 11 of file ShallowSimhitClustersProducer.cc.

References edm::ParameterSet::getParameter(), Prefix, runningmode_, simhits_tokens_, and AlCaHLTBitMon_QueryRunRegistry::string.

13  geomToken_(esConsumes<TrackerGeometry, TrackerDigiGeometryRecord>()),
14  magFieldToken_(esConsumes<MagneticField, IdealMagneticFieldRecord>()),
15  laToken_(esConsumes<SiStripLorentzAngle, SiStripLorentzAngleRcd>(
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 }
std::vector< edm::EDGetTokenT< std::vector< PSimHit > > > simhits_tokens_
const edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleRcd > laToken_
const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusters_token_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken_

Member Function Documentation

shallow::CLUSTERMAP::const_iterator ShallowSimhitClustersProducer::match_cluster ( const unsigned &  id,
const float &  strip_,
const shallow::CLUSTERMAP clustermap,
const edmNew::DetSetVector< SiStripCluster > &  clusters 
) const
private

Definition at line 107 of file ShallowSimhitClustersProducer.cc.

References edmNew::DetSetVector< T >::begin(), edmNew::DetSetVector< T >::end(), and edmNew::DetSetVector< T >::find().

Referenced by produce().

111  {
112  shallow::CLUSTERMAP::const_iterator cluster = clustermap.end();
113  edmNew::DetSetVector<SiStripCluster>::const_iterator clustersDetSet = clusters.find(id);
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 }
const_iterator end(bool update=false) const
data_type const * const_iterator
Definition: DetSetNew.h:31
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
const_iterator find(id_type i, bool update=false) const
const_iterator begin(bool update=false) const
void ShallowSimhitClustersProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 38 of file ShallowSimhitClustersProducer.cc.

References HLT_FULL_cff::clusters, clusters_token_, shallow::drift(), geomToken_, edm::Event::getByLabel(), edm::Event::getByToken(), edm::EventSetup::getHandle(), mps_fire::i, laToken_, volumeBasedMagneticField_160812_cfi::magfield, magFieldToken_, shallow::make_cluster_map(), match_cluster(), eostools::move(), Prefix, LaserDQM_cfg::process, edm::Event::put(), simhits_tokens_, findQualityFiles::size, StripGeomDetUnit::specificTopology(), StripTopology::strip(), digitizers_cfi::strip, hit::x, hit::y, and hit::z.

38  {
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));
67  const LocalVector drift = shallow::drift(theStripDet, *magfield, *SiStripLorentzAngle);
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 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
shallow::CLUSTERMAP::const_iterator match_cluster(const unsigned &, const float &, const shallow::CLUSTERMAP &, const edmNew::DetSetVector< SiStripCluster > &) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
LocalVector drift(const StripGeomDetUnit *, const MagneticField &, const SiStripLorentzAngle &)
Definition: ShallowTools.cc:36
std::vector< edm::EDGetTokenT< std::vector< PSimHit > > > simhits_tokens_
virtual const StripTopology & specificTopology() const
Returns a reference to the strip proxy topology.
const edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleRcd > laToken_
virtual float strip(const LocalPoint &) const =0
def move
Definition: eostools.py:511
const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusters_token_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
CLUSTERMAP make_cluster_map(const edm::Event &, const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > &)
Definition: ShallowTools.cc:12
std::map< std::pair< uint32_t, uint16_t >, unsigned int > CLUSTERMAP
Definition: ShallowTools.h:21
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:151
tuple process
Definition: LaserDQM_cfg.py:3
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken_
tuple size
Write out results.

Member Data Documentation

const edm::EDGetTokenT<edmNew::DetSetVector<SiStripCluster> > ShallowSimhitClustersProducer::clusters_token_
private

Definition at line 24 of file ShallowSimhitClustersProducer.h.

Referenced by produce().

const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> ShallowSimhitClustersProducer::geomToken_
private

Definition at line 25 of file ShallowSimhitClustersProducer.h.

Referenced by produce().

const edm::ESGetToken<SiStripLorentzAngle, SiStripLorentzAngleRcd> ShallowSimhitClustersProducer::laToken_
private

Definition at line 27 of file ShallowSimhitClustersProducer.h.

Referenced by produce().

const edm::ESGetToken<MagneticField, IdealMagneticFieldRecord> ShallowSimhitClustersProducer::magFieldToken_
private

Definition at line 26 of file ShallowSimhitClustersProducer.h.

Referenced by produce().

std::string ShallowSimhitClustersProducer::Prefix
private

Definition at line 28 of file ShallowSimhitClustersProducer.h.

Referenced by produce(), and ShallowSimhitClustersProducer().

std::string ShallowSimhitClustersProducer::runningmode_
private

Definition at line 29 of file ShallowSimhitClustersProducer.h.

Referenced by ShallowSimhitClustersProducer().

std::vector<edm::EDGetTokenT<std::vector<PSimHit> > > ShallowSimhitClustersProducer::simhits_tokens_
private

Definition at line 23 of file ShallowSimhitClustersProducer.h.

Referenced by produce(), and ShallowSimhitClustersProducer().