]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Trying to fix coding violations.
authoraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 3 Apr 2010 14:12:56 +0000 (14:12 +0000)
committeraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 3 Apr 2010 14:12:56 +0000 (14:12 +0000)
HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructor.cxx
HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructor.h

index 0e9fe9bfdbcb5f6ab1a9e4d53b0ee59cc9165707..cb81915f55dbf0264c84befd31eb1d19c73b71d3 100644 (file)
@@ -273,7 +273,7 @@ void AliHLTMUONHitReconstructor::TryRecover(ERecoveryMode mode)
 bool AliHLTMUONHitReconstructor::Run(
                const AliHLTUInt32_t* rawData,
                AliHLTUInt32_t rawDataSize,
-               AliHLTMUONRecHitStruct* recHit,
+               AliHLTMUONRecHitStruct* const recHit,
                AliHLTUInt32_t& nofHit
        ) 
 {
index cacd18779a043ef57bd3f4b01192aec6bcdb238e..f84e5b8a2c4e5994679f5975bcb5b62159379608 100644 (file)
@@ -51,7 +51,7 @@ public:
        bool Run(
                        const AliHLTUInt32_t* rawData,
                        AliHLTUInt32_t rawDataSize,
-                       AliHLTMUONRecHitStruct* recHit,
+                       AliHLTMUONRecHitStruct* const recHit,
                        AliHLTUInt32_t& nofHit
                );
        
@@ -189,7 +189,7 @@ private:
                void OnError(ErrorCode code, const void* location);
                
                void SetDCCut(AliHLTInt32_t dcCut) {fDCCut = dcCut;}
-               void SetPadData(AliHLTMUONPad* padData) {fPadData = padData;}
+               void SetPadData(AliHLTMUONPad* const padData) {fPadData = padData;}
                void SetLookUpTable(const AliHLTMUONHitRecoLutRow* lookUpTableData) {fkLookUpTableData = lookUpTableData;}
 
                void SetIdManuChannelToEntry(const IdManuChannelToEntry* idToEntry) {fkIdToEntry = idToEntry;}
@@ -198,8 +198,8 @@ private:
                AliHLTInt32_t DDLNumber() const { return fDDL; }
                void DDLNumber(AliHLTInt32_t value) { fDDL = (value & 0x1F); }  // 0x1F forces value into our required range.
                // The following two methods have to called after set the ddl
-               void SetNofFiredDetElemId(AliHLTUInt16_t *nofDataInDetElem) {fNofDataInDetElem = nofDataInDetElem;}
-               void SetMaxFiredPerDetElem(AliHLTUInt16_t **dataCountListPerDetElem) {fDataCountListPerDetElem = dataCountListPerDetElem;}              
+               void SetNofFiredDetElemId(AliHLTUInt16_t* const nofDataInDetElem) {fNofDataInDetElem = nofDataInDetElem;}
+               void SetMaxFiredPerDetElem(AliHLTUInt16_t** const dataCountListPerDetElem) {fDataCountListPerDetElem = dataCountListPerDetElem;}                
 
 
                AliHLTInt32_t GetDataCount() const {return fDataCount;}