CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GEMHitAssociator.cc
Go to the documentation of this file.
2 
3 using namespace std;
4 
5 // 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 {
15  if (crossingframe){
17  } else if (!GEMsimhitsTag.label().empty()) {
19  }
20 
22 }
23 
25  GEMdigisimlinkTag(conf.getParameter<edm::InputTag>("GEMdigisimlinkTag")),
26  // CrossingFrame used or not ?
27  crossingframe(conf.getParameter<bool>("crossingframe")),
28  useGEMs_(conf.getParameter<bool>("useGEMs")),
29  GEMsimhitsTag(conf.getParameter<edm::InputTag>("GEMsimhitsTag")),
30  GEMsimhitsXFTag(conf.getParameter<edm::InputTag>("GEMsimhitsXFTag"))
31 {
32  initEvent(e,eventSetup);
33 }
34 
36 {
37 
38  if(useGEMs_){
39 
40  if (crossingframe) {
41 
43  LogTrace("GEMHitAssociator") <<"getting CrossingFrame<PSimHit> collection - "<<GEMsimhitsXFTag;
45 
46  std::auto_ptr<MixCollection<PSimHit> >
47  GEMsimhits( new MixCollection<PSimHit>(cf.product()) );
48  LogTrace("GEMHitAssociator") <<"... size = "<<GEMsimhits->size();
49 
50  // MixCollection<PSimHit> & simHits = *hits;
51 
52  for(MixCollection<PSimHit>::MixItr hitItr = GEMsimhits->begin();
53  hitItr != GEMsimhits->end(); ++hitItr)
54  {
55  _SimHitMap[hitItr->detUnitId()].push_back(*hitItr);
56  }
57 
58  } else if (!GEMsimhitsTag.label().empty()) {
60  LogTrace("GEMHitAssociator") <<"getting PSimHit collection - "<<GEMsimhitsTag;
61  e.getByLabel(GEMsimhitsTag, GEMsimhits);
62  LogTrace("GEMHitAssociator") <<"... size = "<<GEMsimhits->size();
63 
64  // arrange the hits by detUnit
65  for(edm::PSimHitContainer::const_iterator hitItr = GEMsimhits->begin();
66  hitItr != GEMsimhits->end(); ++hitItr)
67  {
68  _SimHitMap[hitItr->detUnitId()].push_back(*hitItr);
69  }
70  }
71 
72  edm::Handle<DigiSimLinks> digiSimLinks;
73  LogTrace("GEMHitAssociator") <<"getting GEM Strip DigiSimLink collection - "<<GEMdigisimlinkTag;
74  e.getByLabel(GEMdigisimlinkTag, digiSimLinks);
75  theDigiSimLinks = digiSimLinks.product();
76 
77  }
78 
79 }
80 // end of constructor
81 
82 std::vector<GEMHitAssociator::SimHitIdpr> GEMHitAssociator::associateRecHit(const TrackingRecHit & hit) const {
83 
84  std::vector<SimHitIdpr> matched;
85 
86  if(useGEMs_){
87 
88  //std::cout<<"gemboo "<<useGEMs_<<std::endl;
89 
90  const TrackingRecHit * hitp = &hit;
91  const GEMRecHit * gemrechit = dynamic_cast<const GEMRecHit *>(hitp);
92 
93  if (gemrechit) {
94 
95  GEMDetId gemDetId = gemrechit->gemId();
96  int fstrip = gemrechit->firstClusterStrip();
97  int cls = gemrechit->clusterSize();
98  //int bx = gemrechit->BunchX();
99 
100  DigiSimLinks::const_iterator layerLinks = theDigiSimLinks->find(gemDetId);
101 
102  if (layerLinks != theDigiSimLinks->end()) {
103 
104  for(int i = fstrip; i < (fstrip+cls); ++i) {
105 
106  for(LayerLinks::const_iterator itlink = layerLinks->begin(); itlink != layerLinks->end(); ++itlink) {
107 
108  int ch = static_cast<int>(itlink->channel());
109  if(ch != i) continue;
110 
111  SimHitIdpr currentId(itlink->SimTrackId(), itlink->eventId());
112  if(find(matched.begin(),matched.end(),currentId ) == matched.end())
113  matched.push_back(currentId);
114 
115  }
116 
117  }
118 
119  }else edm::LogWarning("GEMHitAssociator")
120  <<"*** WARNING in GEMHitAssociator: GEM layer "<<gemDetId<<" has no DigiSimLinks !"<<std::endl;
121 
122  } else edm::LogWarning("GEMHitAssociator")<<"*** WARNING in GEMHitAssociator::associateRecHit, null dynamic_cast !";
123 
124  }
125 
126  return matched;
127 
128 }
129 
int i
Definition: DBlmapReader.cc:9
int clusterSize() const
Definition: GEMRecHit.h:109
edm::EDGetTokenT< edm::PSimHitContainer > GEMsimhitsToken_
iterator find(det_id_type id)
Definition: DetSetVector.h:290
edm::InputTag GEMsimhitsXFTag
edm::EDGetTokenT< CrossingFrame< PSimHit > > GEMsimhitsXFToken_
std::map< unsigned int, edm::PSimHitContainer > _SimHitMap
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
edm::InputTag GEMsimhitsTag
GEMHitAssociator(const edm::ParameterSet &, edm::ConsumesCollector &&ic)
edm::EDGetTokenT< edm::DetSetVector< StripDigiSimLink > > GEMdigisimlinkToken_
std::pair< uint32_t, EncodedEventId > SimHitIdpr
void initEvent(const edm::Event &, const edm::EventSetup &)
edm::InputTag GEMdigisimlinkTag
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:418
iterator end()
Return the off-the-end iterator.
Definition: DetSetVector.h:361
#define LogTrace(id)
T const * product() const
Definition: Handle.h:81
int firstClusterStrip() const
Definition: GEMRecHit.h:105
const DigiSimLinks * theDigiSimLinks
std::string const & label() const
Definition: InputTag.h:36
std::vector< PSimHit > PSimHitContainer
GEMDetId gemId() const
Return the gemId.
Definition: GEMRecHit.h:97
collection_type::const_iterator const_iterator
Definition: DetSet.h:33
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:104
std::vector< SimHitIdpr > associateRecHit(const TrackingRecHit &hit) const