CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GEMSimTrackMatch.cc
Go to the documentation of this file.
7 #include <TMath.h>
8 #include <TH1F.h>
9 
10 using namespace std;
11 using namespace GEMDetLabel;
13 {
14  std::string simInputLabel_ = ps.getUntrackedParameter<std::string>("simInputLabel");
15 
16  simHitsToken_ = consumes<edm::PSimHitContainer>(edm::InputTag(simInputLabel_,"MuonGEMHits"));
17  simTracksToken_ = consumes< edm::SimTrackContainer >(ps.getParameter<edm::InputTag>("simTrackCollection"));
18  simVerticesToken_ = consumes< edm::SimVertexContainer >(ps.getParameter<edm::InputTag>("simVertexCollection"));
19  detailPlot_ = ps.getParameter<bool>("detailPlot");
20 
21  cfg_ = ps;
22 }
23 
25 {
26  // Mandantory
28  iSetup.get<MuonGeometryRecord>().get(hGeom);
29  const GEMGeometry& geom = *hGeom;
30  setGeometry(geom);
31 
32  const float PI=TMath::Pi();
33 
34  nstation = geom.regions()[0]->stations().size();
35  if ( detailPlot_) {
36  for( unsigned int j=0 ; j<nstation ; j++) {
37  string track_eta_name = string("track_eta")+s_suffix[j];
38  string track_eta_title = string("track_eta")+";SimTrack |#eta|;# of tracks";
39  track_eta[j] = ibooker.book1D(track_eta_name.c_str(), track_eta_title.c_str(),140,minEta_,maxEta_);
40 
41  for ( unsigned int k = 0 ; k<3 ; k++) {
42  string suffix = string(s_suffix[j])+ string(c_suffix[k]);
43  string track_phi_name = string("track_phi")+suffix;
44  string track_phi_title = string("track_phi")+suffix+";SimTrack #phi;# of tracks";
45  track_phi[j][k] = ibooker.book1D(track_phi_name.c_str(), track_phi_title.c_str(),200,-PI,PI);
46  }
47 
48  for( unsigned int i=0 ; i< 4; i++) {
49  string suffix = string(s_suffix[j])+l_suffix[i];
50 
51  string sh_eta_name = string("sh_eta")+suffix;
52  string sh_eta_title = sh_eta_name+"; tracks |#eta|; # of tracks";
53  sh_eta[i][j] = ibooker.book1D( sh_eta_name.c_str(), sh_eta_title.c_str(), 140, minEta_, maxEta_) ;
54 
55  for ( unsigned int k = 0 ; k<3 ; k++) {
56  suffix = string(s_suffix[j])+ string(l_suffix[i])+string(c_suffix[k]);
57  string sh_phi_name = string("sh_phi")+suffix;
58  string sh_phi_title = sh_phi_name+"; tracks #phi; # of tracks";
59  sh_phi[i][j][k] = ibooker.book1D( (sh_phi_name).c_str(), sh_phi_title.c_str(), 200,-PI,PI) ;
60 
61  }
62  }
63  }
64  }
65 }
66 
67 
68 
69 
70 
72 }
73 
75 {
77  iSetup.get<MuonGeometryRecord>().get(hGeom);
78  const GEMGeometry& geom = *hGeom;
79 
80  MySimTrack track_;
84 
85  iEvent.getByToken(simHitsToken_, simhits);
86  iEvent.getByToken(simTracksToken_, sim_tracks);
87  iEvent.getByToken(simVerticesToken_, sim_vertices);
88  if ( !simhits.isValid() || !sim_tracks.isValid() || !sim_vertices.isValid()) return;
89 
90  //const edm::SimVertexContainer & sim_vert = *sim_vertices.product();
91  const edm::SimTrackContainer & sim_trks = *sim_tracks.product();
92 
93 
94  if ( detailPlot_) {
95 
96  for (auto& t: sim_trks)
97  {
98  if (!isSimTrackGood(t))
99  { continue; }
100 
101  track_.pt = t.momentum().pt();
102  track_.phi = t.momentum().phi();
103  track_.eta = t.momentum().eta();
104  std::fill( std::begin(track_.hitOdd), std::end(track_.hitOdd),false);
105  std::fill( std::begin(track_.hitEven), std::end(track_.hitEven),false);
106  for( int i=0 ; i<3 ; i++) {
107  for (int j=0 ; j<2 ; j++) {
108  track_.gem_sh[i][j] = false;
109  }
110  }
111 
112  // match hits to this SimTrack
113  const SimHitMatcher match_sh = SimHitMatcher( t, iEvent, geom, cfg_, simHitsToken_, simTracksToken_, simVerticesToken_ );
114 
115  // check for hit chambers
116  const auto gem_sh_ids_ch = match_sh.chamberIdsGEM();
117 
118  for(auto d: gem_sh_ids_ch)
119  {
120  const GEMDetId id(d);
121  if ( id.chamber() %2 ==0 ) track_.hitEven[id.station()-1] = true;
122  else if ( id.chamber() %2 ==1 ) track_.hitOdd[id.station()-1] = true;
123  else { std::cout<<"Error to get chamber id"<<std::endl;}
124  track_.gem_sh[ id.station()-1][ (id.layer()-1)] = true;
125  }
126  FillWithTrigger( track_eta, fabs(track_.eta)) ;
127  FillWithTrigger( track_phi, fabs(track_.eta), track_.phi, track_.hitOdd, track_.hitEven);
128  FillWithTrigger( sh_eta, track_.gem_sh , fabs( track_.eta) );
129  FillWithTrigger( sh_phi, track_.gem_sh ,fabs(track_.eta), track_.phi , track_.hitOdd, track_.hitEven);
130  }
131  }
132 }
133 
const double Pi
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
string fill
Definition: lumiContext.py:319
unsigned int nstation
Definition: GEMTrackMatch.h:80
#define PI
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
MonitorElement * track_eta[3]
edm::ParameterSet cfg_
Definition: GEMTrackMatch.h:63
std::set< unsigned int > chamberIdsGEM() const
GEM chamber detIds with SimHits.
edm::EDGetToken simHitsToken_
Definition: GEMTrackMatch.h:64
edm::EDGetToken simVerticesToken_
Definition: GEMTrackMatch.h:66
void analyze(const edm::Event &e, const edm::EventSetup &) override
bool hitOdd[3]
Definition: GEMTrackMatch.h:38
Float_t eta
Definition: GEMTrackMatch.h:27
tuple d
Definition: ztail.py:151
void setGeometry(const GEMGeometry &geom)
int iEvent
Definition: GenABIO.cc:230
edm::EDGetToken simTracksToken_
Definition: GEMTrackMatch.h:65
const std::vector< const GEMRegion * > & regions() const
Return a vector of all GEM regions.
Definition: GEMGeometry.cc:43
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
int j
Definition: DBlmapReader.cc:9
#define end
Definition: vmac.h:37
bool isValid() const
Definition: HandleBase.h:75
static const std::string l_suffix[4]
Definition: GEMDetLabel.h:2
GEMSimTrackMatch(const edm::ParameterSet &ps)
MonitorElement * track_phi[3][3]
bool hitEven[3]
Definition: GEMTrackMatch.h:39
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
MonitorElement * sh_phi[4][3][3]
Float_t pt
Definition: GEMTrackMatch.h:27
T const * product() const
Definition: Handle.h:81
MonitorElement * sh_eta[4][3]
const T & get() const
Definition: EventSetup.h:56
void FillWithTrigger(MonitorElement *me[3], Float_t eta)
static const std::string c_suffix[3]
Definition: GEMDetLabel.h:4
#define begin
Definition: vmac.h:30
static const std::string s_suffix[3]
Definition: GEMDetLabel.h:3
Float_t phi
Definition: GEMTrackMatch.h:27
bool isSimTrackGood(const SimTrack &)
tuple cout
Definition: gather_cfg.py:145
bool gem_sh[3][2]
Definition: GEMTrackMatch.h:34
std::vector< SimTrack > SimTrackContainer
Definition: Run.h:43