Skip to content

Commit

Permalink
Merge pull request #9263 from rjwang/CMSSW_7_5_X_addCSCME31
Browse files Browse the repository at this point in the history
adding missing information of CSC ME3/1
  • Loading branch information
cmsbuild committed May 26, 2015
2 parents 2c01e3d + cf1ec49 commit 570e9e9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions DQM/L1TMonitor/src/L1TCSCTF.cc
Expand Up @@ -927,6 +927,15 @@ void L1TCSCTF::analyze(const Event& e, const EventSetup& c)
if(endcap == 0) { csc_strip_MEplus22 -> Fill(realID,strip); csc_wire_MEplus22 -> Fill(realID,keyWire); }
if(endcap == 1) { csc_strip_MEminus22 -> Fill(realID,strip); csc_wire_MEminus22 -> Fill(realID,keyWire); }
}

//ME3/1
if (station == 2 && ring == 1){
int realID = cscId+3*sector+2;
if(realID>18) realID -= 18;
if(endcap == 0) { csc_strip_MEplus31 -> Fill(realID,strip); csc_wire_MEplus31 -> Fill(realID,keyWire); }
if(endcap == 1) { csc_strip_MEminus31 -> Fill(realID,strip); csc_wire_MEminus31 -> Fill(realID,keyWire); }
}

//ME3/2
if (station == 2 && ring == 2){
int realID = (cscId-3)+6*sector+3;
Expand Down

0 comments on commit 570e9e9

Please sign in to comment.