break ;
case AliQualAss::kRECPOINTS:
+ {
AliInfo("Processing RecPoints QA") ;
TTree * recpoints = dynamic_cast<TTree *>(data) ;
if (recpoints)
else
AliError("Wrong type of recpoints container") ;
break ;
-
+ }
case AliQualAss::kTRACKSEGMENTS:
AliInfo("Processing Track Segments QA: not existing anymore") ;
// TTree * ts = dynamic_cast<TTree *>(data) ;
// AliError("Wrong type of track segments container") ;
break ;
- case AliQualAss::kRECPARTICLES:
+ case AliQualAss::kRECPARTICLES:
AliInfo("Processing RecParticles QA: not existing anymore") ;
// TTree * recpar = dynamic_cast<TTree *>(data) ;
// if (recpar)
break ;
case AliQualAss::kESDS:
+ {
AliInfo("Processing ESDs QA") ;
AliESDEvent * esd = dynamic_cast<AliESDEvent *>(data) ;
if (esd)
MakeESDs(esd) ;
else
AliError("Wrong type of esd container") ;
- break ;
+ break ;
+ }
}
}
switch (task) {
case AliQualAss::kRAWS:
+ {
fRawsQAList = new TList() ;
InitRaws() ;
return fRawsQAList ;
break ;
-
+ }
case AliQualAss::kHITS:
+ {
fHitsQAList = new TList() ;
InitHits() ;
return fHitsQAList ;
break ;
-
+ }
case AliQualAss::kSDIGITS:
+ {
fSDigitsQAList = new TList() ;
InitSDigits() ;
return fSDigitsQAList ;
break ;
-
+ }
case AliQualAss::kDIGITS:
+ {
fDigitsQAList = new TList();
InitDigits() ;
return fDigitsQAList ;
break ;
-
+ }
case AliQualAss::kRECPOINTS:
+ {
fRecPointsQAList = new TList ;
InitRecPoints() ;
return fRecPointsQAList ;
break ;
-
+ }
case AliQualAss::kTRACKSEGMENTS:
// InitTrackSegments() ;
break ;
break ;
case AliQualAss::kESDS:
- fESDsQAList = new TList() ;
+ {
+ fESDsQAList = new TList() ;
InitESDs() ;
return fRecPointsQAList ;
break ;
+ }
}
return 0x0 ;
}