X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONSegmentManuIndex.cxx;h=48dcd527186de50f583614c04f228456dc6a26be;hb=126286111c62b196ba606797931887c1d76eab6d;hp=038922d91d1a1d50f0243688d8a3ac6d5647469f;hpb=212bb69db3c3a13dcb341e32463f066c5bd8a22c;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONSegmentManuIndex.cxx b/MUON/AliMUONSegmentManuIndex.cxx index 038922d91d1..48dcd527186 100644 --- a/MUON/AliMUONSegmentManuIndex.cxx +++ b/MUON/AliMUONSegmentManuIndex.cxx @@ -28,6 +28,7 @@ #include #include "AliMUONSegmentManuIndex.h" +#include "AliLog.h" //___________________________________________ ClassImp(AliMUONSegmentManuIndex) @@ -43,7 +44,7 @@ AliMUONSegmentManuIndex::AliMUONSegmentManuIndex() fManuChannelId= 0;; } //___________________________________________ -AliMUONSegmentManuIndex::AliMUONSegmentManuIndex(const Int_t channelId, const Int_t manuId, const Int_t busPatchId, Int_t manuChannelId) : TNamed() +AliMUONSegmentManuIndex::AliMUONSegmentManuIndex(Int_t channelId, Int_t manuId, Int_t busPatchId, Int_t manuChannelId) : TNamed() { // Constructor to be used fName = Name(manuId, manuChannelId).Data(); @@ -75,8 +76,8 @@ TString AliMUONSegmentManuIndex::Name(Int_t manuid, Int_t manuchannel) return TString(name); } //___________________________________________ -void AliMUONSegmentManuIndex::Print() const +void AliMUONSegmentManuIndex::Print(const char* /*opt*/) const { // Printing AliMUONSegmentManuIndex information - Info("Print","Name=%s Id=%d BusPatch=%d ManuId=%d ManuChannelId=%d\n",fName.Data(),fChannelId,fBusPatchId,fManuId,fManuChannelId); + AliInfo(Form("Name=%s Id=%d BusPatch=%d ManuId=%d ManuChannelId=%d\n",fName.Data(),fChannelId,fBusPatchId,fManuId,fManuChannelId)); }