CMS 3D CMS Logo

GEMHitAssociator.cc
Go to the documentation of this file.
3 
4 using namespace std;
5 
6 // Constructor
8  : GEMdigisimlinkTag(conf.getParameter<edm::InputTag>("GEMdigisimlinkTag")),
9  // CrossingFrame used or not ?
10  crossingframe(conf.getParameter<bool>("crossingframe")),
11  useGEMs_(conf.getParameter<bool>("useGEMs")),
12  GEMsimhitsTag(conf.getParameter<edm::InputTag>("GEMsimhitsTag")),
13  GEMsimhitsXFTag(conf.getParameter<edm::InputTag>("GEMsimhitsXFTag")) {
14  if (crossingframe) {
16  } else if (!GEMsimhitsTag.label().empty()) {
18  }
19 
21 }
22 
24  const edm::EventSetup &eventSetup,
25  const edm::ParameterSet &conf)
26  : GEMdigisimlinkTag(conf.getParameter<edm::InputTag>("GEMdigisimlinkTag")),
27  // CrossingFrame used or not ?
28  crossingframe(conf.getParameter<bool>("crossingframe")),
29  useGEMs_(conf.getParameter<bool>("useGEMs")),
30  GEMsimhitsTag(conf.getParameter<edm::InputTag>("GEMsimhitsTag")),
31  GEMsimhitsXFTag(conf.getParameter<edm::InputTag>("GEMsimhitsXFTag")) {
32  initEvent(e, eventSetup);
33 }
34 
35 void GEMHitAssociator::initEvent(const edm::Event &e, const edm::EventSetup &eventSetup) {
36  if (useGEMs_) {
37  if (crossingframe) {
39  LogTrace("GEMHitAssociator") << "getting CrossingFrame<PSimHit> collection - " << GEMsimhitsXFTag;
40  e.getByLabel(GEMsimhitsXFTag, cf);
41 
42  std::unique_ptr<MixCollection<PSimHit>> GEMsimhits(new MixCollection<PSimHit>(cf.product()));
43  LogTrace("GEMHitAssociator") << "... size = " << GEMsimhits->size();
44 
45  // MixCollection<PSimHit> & simHits = *hits;
46 
47  for (MixCollection<PSimHit>::MixItr hitItr = GEMsimhits->begin(); hitItr != GEMsimhits->end(); ++hitItr) {
48  _SimHitMap[hitItr->detUnitId()].push_back(*hitItr);
49  }
50 
51  } else if (!GEMsimhitsTag.label().empty()) {
53  LogTrace("GEMHitAssociator") << "getting PSimHit collection - " << GEMsimhitsTag;
54  e.getByLabel(GEMsimhitsTag, GEMsimhits);
55  LogTrace("GEMHitAssociator") << "... size = " << GEMsimhits->size();
56 
57  // arrange the hits by detUnit
58  for (edm::PSimHitContainer::const_iterator hitItr = GEMsimhits->begin(); hitItr != GEMsimhits->end(); ++hitItr) {
59  _SimHitMap[hitItr->detUnitId()].push_back(*hitItr);
60  }
61  }
62 
64  LogTrace("GEMHitAssociator") << "getting GEM Strip DigiSimLink collection - " << GEMdigisimlinkTag;
65  e.getByLabel(GEMdigisimlinkTag, digiSimLinks);
66  theDigiSimLinks = digiSimLinks.product();
67  }
68 }
69 // end of constructor
70 
71 std::vector<GEMHitAssociator::SimHitIdpr> GEMHitAssociator::associateRecHit(const GEMRecHit *gemrechit) const {
72  std::vector<SimHitIdpr> matched;
73 
74  if (useGEMs_) {
75  if (gemrechit) {
76  GEMDetId gemDetId = gemrechit->gemId();
77  int fstrip = gemrechit->firstClusterStrip();
78  int cls = gemrechit->clusterSize();
79  // int bx = gemrechit->BunchX();
80 
81  DigiSimLinks::const_iterator layerLinks = theDigiSimLinks->find(gemDetId);
82 
83  if (layerLinks != theDigiSimLinks->end()) {
84  for (int i = fstrip; i < (fstrip + cls); ++i) {
85  for (LayerLinks::const_iterator itlink = layerLinks->begin(); itlink != layerLinks->end(); ++itlink) {
86  int ch = static_cast<int>(itlink->getStrip());
87  if (ch != i)
88  continue;
89 
90  SimHitIdpr currentId(itlink->getTrackId(), itlink->getEventId());
91  if (find(matched.begin(), matched.end(), currentId) == matched.end())
92  matched.push_back(currentId);
93  }
94  }
95 
96  } else
97  edm::LogWarning("GEMHitAssociator")
98  << "*** WARNING in GEMHitAssociator: GEM layer " << gemDetId << " has no DigiSimLinks !" << std::endl;
99 
100  } else
101  edm::LogWarning("GEMHitAssociator") << "*** WARNING in GEMHitAssociator::associateRecHit, null "
102  "dynamic_cast !";
103  }
104 
105  return matched;
106 }
muonTagProbeFilters_cff.matched
matched
Definition: muonTagProbeFilters_cff.py:62
edm::DetSetVector
Definition: DetSetVector.h:61
electrons_cff.bool
bool
Definition: electrons_cff.py:366
mps_fire.i
i
Definition: mps_fire.py:428
MessageLogger.h
edm::Handle::product
T const * product() const
Definition: Handle.h:70
edm::DetSetVector::end
iterator end()
Return the off-the-end iterator.
Definition: DetSetVector.h:325
GEMHitAssociator::_SimHitMap
std::map< unsigned int, edm::PSimHitContainer > _SimHitMap
Definition: GEMHitAssociator.h:63
edm
HLT enums.
Definition: AlignableModifier.h:19
MuonAssociatorByHits_cfi.GEMsimhitsTag
GEMsimhitsTag
Definition: MuonAssociatorByHits_cfi.py:65
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89285
MuonAssociatorByHits_cfi.GEMsimhitsXFTag
GEMsimhitsXFTag
Definition: MuonAssociatorByHits_cfi.py:66
MuonAssociatorByHits_cfi.crossingframe
crossingframe
Definition: MuonAssociatorByHits_cfi.py:38
GEMHitAssociator::GEMsimhitsToken_
edm::EDGetTokenT< edm::PSimHitContainer > GEMsimhitsToken_
Definition: GEMHitAssociator.h:60
GEMHitAssociator::initEvent
void initEvent(const edm::Event &, const edm::EventSetup &)
Definition: GEMHitAssociator.cc:35
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
edm::Handle
Definition: AssociativeIterator.h:50
GEMHitAssociator::useGEMs_
bool useGEMs_
Definition: GEMHitAssociator.h:55
MixCollection::MixItr
Definition: MixCollection.h:61
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
GEMHitAssociator::GEMsimhitsXFToken_
edm::EDGetTokenT< CrossingFrame< PSimHit > > GEMsimhitsXFToken_
Definition: GEMHitAssociator.h:59
edm::InputTag::label
std::string const & label() const
Definition: InputTag.h:36
CrossingFrame
Definition: CrossingFrame.h:37
TTClusterAssociation_cfi.digiSimLinks
digiSimLinks
Definition: TTClusterAssociation_cfi.py:8
GEMHitAssociator::GEMdigisimlinkToken_
edm::EDGetTokenT< edm::DetSetVector< GEMDigiSimLink > > GEMdigisimlinkToken_
Definition: GEMHitAssociator.h:61
GEMHitAssociator::GEMHitAssociator
GEMHitAssociator(const edm::ParameterSet &, edm::ConsumesCollector &&ic)
Definition: GEMHitAssociator.cc:7
GEMHitAssociator::SimHitIdpr
std::pair< uint32_t, EncodedEventId > SimHitIdpr
Definition: GEMHitAssociator.h:37
MixCollection
Definition: MixCollection.h:10
GEMHitAssociator::crossingframe
bool crossingframe
Definition: GEMHitAssociator.h:54
GEMHitAssociator::GEMsimhitsTag
edm::InputTag GEMsimhitsTag
Definition: GEMHitAssociator.h:56
GEMHitAssociator::associateRecHit
std::vector< SimHitIdpr > associateRecHit(const GEMRecHit *gemrechit) const
Definition: GEMHitAssociator.cc:71
edm::ParameterSet
Definition: ParameterSet.h:47
edm::DetSetVector::const_iterator
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:102
GEMDetId
Definition: GEMDetId.h:18
GEMRecHit::firstClusterStrip
int firstClusterStrip() const
Definition: GEMRecHit.h:69
edm::DetSetVector::find
iterator find(det_id_type id)
Definition: DetSetVector.h:264
GEMHitAssociator::GEMsimhitsXFTag
edm::InputTag GEMsimhitsXFTag
Definition: GEMHitAssociator.h:57
GEMRecHit::gemId
GEMDetId gemId() const
Return the gemId.
Definition: GEMRecHit.h:65
edm::EventSetup
Definition: EventSetup.h:58
GEMRecHit::clusterSize
int clusterSize() const
Definition: GEMRecHit.h:71
GEMHitAssociator::GEMdigisimlinkTag
edm::InputTag GEMdigisimlinkTag
Definition: GEMHitAssociator.h:52
std
Definition: JetResolutionObject.h:76
GEMHitAssociator::theDigiSimLinks
const DigiSimLinks * theDigiSimLinks
Definition: GEMHitAssociator.h:51
GEMRecHit
Definition: GEMRecHit.h:14
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:234
edm::PSimHitContainer
std::vector< PSimHit > PSimHitContainer
Definition: PSimHitContainer.h:11
GEMHitAssociator.h
edm::Event
Definition: Event.h:73
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
MuonAssociatorByHits_cfi.GEMdigisimlinkTag
GEMdigisimlinkTag
Definition: MuonAssociatorByHits_cfi.py:67
edm::DetSet< GEMDigiSimLink >::const_iterator
collection_type::const_iterator const_iterator
Definition: DetSet.h:31