Skip to content

Commit

Permalink
Merge pull request cms-sw#85 from akalinow/new_inputs
Browse files Browse the repository at this point in the history
Fix bug in DT eta assignement.
  • Loading branch information
akalinow committed Nov 6, 2015
2 parents a1fa229 + 56a1704 commit a8b66be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion L1Trigger/L1TMuonTrackFinderOverlap/src/OMTFinputMaker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ void OMTFinputMaker::processDT(const L1MuDTChambPhContainer *dtPhDigis,

unsigned int iLayer = OMTFConfiguration::hwToLogicLayer[hwNumber];
int iPhi = katownik->getGlobalPhi(detid.rawId(), digiIt);
int iEta = 0.9;//Temporary value.
int iEta = 0.9/2.61*240;//Temporary value.
if(detid.wheel()<0) iEta*=-1;
unsigned int iInput= getInputNumber(detid.rawId(), iProcessor, type);

myInput->addLayerHit(iLayer,iInput,iPhi,iEta);
Expand Down

0 comments on commit a8b66be

Please sign in to comment.