From 19fa3c172a9034f66092faf0eff1f00b44f466ee Mon Sep 17 00:00:00 2001 From: kir Date: Tue, 18 Jul 2006 14:31:08 +0000 Subject: [PATCH] Bug in chamber number to DDL index fixed --- RICH/AliRICHDigit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RICH/AliRICHDigit.h b/RICH/AliRICHDigit.h index 03d7a939cbc..f36fe88627d 100644 --- a/RICH/AliRICHDigit.h +++ b/RICH/AliRICHDigit.h @@ -32,7 +32,7 @@ public: Int_t Chamber ( )const{return fChamber;} //chamber number Int_t C ( )const{return fChamber;} //chamber number Int_t D ( )const{return 1+(PadX()-1)/kDiloX;} //DILOGIC chip number 1..10 - Int_t Ddl ( )const{return (PadX()<=kPadsSecX) ? 2*C()-1 : 2*C();} //DDL number 0..13 + Int_t Ddl ( )const{return (PadX()<=kPadsSecX) ? 2*C()-2 : 2*C()-1;} //DDL number 0..13 inline Int_t Dig2Raw ( UInt_t &w )const; //returns DDL ID and fill raw word Int_t PadX ( )const{return fPadX;} //x position of the pad Int_t PadY ( )const{return fPadY;} //y postion of the pad -- 2.39.3