Skip to content

Commit

Permalink
Separate eta and phi distribution for each station.
Browse files Browse the repository at this point in the history
  • Loading branch information
geonmo committed May 29, 2014
1 parent 2b1c852 commit c1559f4
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 212 deletions.
45 changes: 15 additions & 30 deletions Validation/MuonGEMDigis/interface/GEMDigiTrackMatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,49 +16,34 @@ class GEMDigiTrackMatch : public GEMTrackMatch
~GEMDigiTrackMatch();
void analyze(const edm::Event& e, const edm::EventSetup&);
void bookHisto();

void FillWithTrigger( MonitorElement* me[4][3], bool array[3][2], Float_t value);
private:

MonitorElement* track_eta;
MonitorElement* track_phi;

MonitorElement* track_dg_eta;
MonitorElement* track_sh_eta;

MonitorElement* dg_eta[4];
MonitorElement* dg_sh_eta[4];
//MonitorElement* track_dg_eta;
//MonitorElement* track_sh_eta;

MonitorElement* dg_eta[4][3];
MonitorElement* dg_sh_eta[4][3];

MonitorElement* dg_phi[4];
MonitorElement* dg_sh_phi[4];

MonitorElement* pad_eta[4];
MonitorElement* pad_phi[4];
MonitorElement* dg_phi[4][3];
MonitorElement* dg_sh_phi[4][3];

MonitorElement* pad_eta[4][3];
MonitorElement* pad_phi[4][3];

/*
MonitorElement* dg_lx_even;
MonitorElement* dg_lx_even_l1;
MonitorElement* dg_lx_even_l2;
MonitorElement* dg_lx_even_l1or2;
MonitorElement* dg_lx_even_l1and2;

MonitorElement* dg_ly_even;
MonitorElement* dg_ly_even_l1;
MonitorElement* dg_ly_even_l2;
MonitorElement* dg_ly_even_l1or2;
MonitorElement* dg_ly_even_l1and2;

MonitorElement* dg_lx_odd;
MonitorElement* dg_lx_odd_l1;
MonitorElement* dg_lx_odd_l2;
MonitorElement* dg_lx_odd_l1or2;
MonitorElement* dg_lx_odd_l1and2;

MonitorElement* dg_ly_even;
MonitorElement* dg_ly_odd;
MonitorElement* dg_ly_odd_l1;
MonitorElement* dg_ly_odd_l2;
MonitorElement* dg_ly_odd_l1or2;
MonitorElement* dg_ly_odd_l1and2;
////
MonitorElement* dg_lx_even[4][3][2];
MonitorElement* dg_ly_even[4][3][2];
*/

};

Expand Down
Loading

0 comments on commit c1559f4

Please sign in to comment.