Skip to content

Commit

Permalink
Fixes for ROOT6
Browse files Browse the repository at this point in the history
  • Loading branch information
mfasDa authored and hristov committed Feb 5, 2016
1 parent cce703b commit 38416f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions ITSMFT/COMMONITSMFT/COMMONITSMFTBase/AliITSMFTDigitPix.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Int_t AliITSMFTDigitPix::GetListOfTracks(TArrayI &t)
}

//______________________________________________________________________
void AliITSMFTDigitPix::Print(ostream *os) const
void AliITSMFTDigitPix::Print(std::ostream *os) const
{
//Standard output format for this class
Int_t i;
Expand All @@ -164,7 +164,7 @@ void AliITSMFTDigitPix::Print(ostream *os) const
}

//______________________________________________________________________
void AliITSMFTDigitPix::Read(istream *os)
void AliITSMFTDigitPix::Read(std::istream *os)
{
//Standard input for this class
Int_t i;
Expand All @@ -177,7 +177,7 @@ void AliITSMFTDigitPix::Read(istream *os)
}

//______________________________________________________________________
ostream &operator<<(ostream &os,AliITSMFTDigitPix &source)
std::ostream &operator<<(std::ostream &os,AliITSMFTDigitPix &source)
{
// Standard output streaming function.

Expand All @@ -186,7 +186,7 @@ ostream &operator<<(ostream &os,AliITSMFTDigitPix &source)
}

//______________________________________________________________________
istream &operator>>(istream &os,AliITSMFTDigitPix &source)
std::istream &operator>>(std::istream &os,AliITSMFTDigitPix &source)
{
// Standard output streaming function.

Expand Down
4 changes: 2 additions & 2 deletions ITSMFT/COMMONITSMFT/COMMONITSMFTBase/AliITSMFTDigitPix.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ class AliITSMFTDigitPix: public TObject {
// set signal in electrons
void SetSignalPix(Int_t sig) {fSignalPix = sig;}
void SetROCycle(Int_t cycle) {fROCycle = cycle;}
void Print(ostream *os) const; // Class ascii print function
void Print(std::ostream *os) const; // Class ascii print function
void Print(Option_t *option="") const {TObject::Print(option);}
void Read(istream *os); // Class ascii read function
void Read(std::istream *os); // Class ascii read function
Int_t Read(const char *name) {return TObject::Read(name);}

protected:
Expand Down
2 changes: 1 addition & 1 deletion ITSMFT/MFT/MFTrec/AliMFTTrackFinder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ void AliMFTTrackFinder::ReadParam(Char_t *parfile)

AliInfo(Form("Reading Parameter File %s ",parfile));

ifstream in;
std::ifstream in;
in.open(parfile,std::ios::in);

std::string line;
Expand Down

0 comments on commit 38416f9

Please sign in to comment.