-// $Id:$
+// $Id$
/**************************************************************************
* This file is property of and copyright by the ALICE HLT Project *
* ALICE Experiment at CERN, All rights reserved. *
AliHLTReadoutList::kEMCAL, AliHLTReadoutList::kDAQTEST, AliHLTReadoutList::kHLT
};
- for (Int_t deti = 0; deti < AliHLTDAQ::NumberOfDetectors() && deti<(sizeof(detId)/sizeof(Int_t)); deti++)
+ for (Int_t deti = 0; deti < AliHLTDAQ::NumberOfDetectors() && (unsigned)deti<(sizeof(detId)/sizeof(Int_t)); deti++)
{
if (list.DetectorEnabled(detId[deti]))
{
AliHLTReadoutList::kEMCAL, AliHLTReadoutList::kDAQTEST, AliHLTReadoutList::kHLT
};
- for (Int_t deti = 0; deti < AliHLTDAQ::NumberOfDetectors() && deti<(sizeof(detId)/sizeof(Int_t)); deti++)
+ for (Int_t deti = 0; deti < AliHLTDAQ::NumberOfDetectors() && (unsigned)deti<(sizeof(detId)/sizeof(Int_t)); deti++)
{
if (list.DetectorEnabled(detId[deti]))
{
vector< int > tracksTPCId;
std::vector<AliITSRecPoint> clusters;
- int currentTrackID = 0;
+ //int currentTrackID = 0;
for (int ndx=0; ndx<nBlocks && iResult>=0; ndx++) {
// see header file for class documentation
}
-int AliHLTGlobalBarrelTrack::ConvertTrackDataArray(const AliHLTTracksData* pTracks, int sizeInByte, vector<AliHLTGlobalBarrelTrack> &tgtArray)
+int AliHLTGlobalBarrelTrack::ConvertTrackDataArray(const AliHLTTracksData* pTracks, unsigned sizeInByte, vector<AliHLTGlobalBarrelTrack> &tgtArray)
{
// see header file for class documentation
int iResult=0;
tgtArray.resize(pTracks->fCount);
const AliHLTUInt8_t* pCurrent=reinterpret_cast<const AliHLTUInt8_t*>(pTracks->fTracklets);
- for (int i=0; i<pTracks->fCount; i++) {
+ for (unsigned i=0; i<pTracks->fCount; i++) {
if (pCurrent+sizeof(AliHLTExternalTrackParam)>=pEnd) {
iResult=-EINVAL; break;
}
// see header file for class documentation
if (!pArray || arraySize==0) return 0;
fPoints.resize(arraySize);
- for (int i=0; i<arraySize; i++) fPoints[i]=pArray[i];
+ for (unsigned i=0; i<arraySize; i++) fPoints[i]=pArray[i];
return fPoints.size();
}
/// Set the list of associated points
int SetPoints(const UInt_t* pArray, UInt_t arraySize);
- static int ConvertTrackDataArray(const AliHLTTracksData* pTracks, int sizeInByte, vector<AliHLTGlobalBarrelTrack> &tgtArray);
+ static int ConvertTrackDataArray(const AliHLTTracksData* pTracks, unsigned sizeInByte, vector<AliHLTGlobalBarrelTrack> &tgtArray);
/// dummy function required by AliKalmanTrack
Double_t GetPredictedChi2(const AliCluster*) const {return 0.0;}