#ifndef ALIALTROBUFFER_H
# include "AliAltroBuffer.h"
#endif
+#include <Riostream.h>
//____________________________________________________________________
ClassImp(AliFMD);
Int_t i;
//
if (fDebug) {
- std::cout << "\n" << ClassName() << ": " << std::flush;
- for (i = 0; i < 35; i++) std::cout << "*";
- std::cout << " FMD_INIT ";
- for (i = 0; i < 35; i++) std::cout << "*";
- std::cout << "\n" << ClassName() << ": " << std::flush;
+ cout << "\n" << ClassName() << ": " << flush;
+ for (i = 0; i < 35; i++) cout << "*";
+ cout << " FMD_INIT ";
+ for (i = 0; i < 35; i++) cout << "*";
+ cout << "\n" << ClassName() << ": " << flush;
//
// Here the FMD initialisation code (if any!)
- for (i = 0; i < 80; i++) std::cout << "*";
- std::cout << std::endl;
+ for (i = 0; i < 80; i++) cout << "*";
+ cout << endl;
}
//
//
#ifndef ALIFMDRING_H
# include "AliFMDRing.h"
#endif
-#include <iostream>
+#include <Riostream.h>
//____________________________________________________________________
ClassImp(AliFMD3);
/ (fOuterZ - fInnerZ));
Double_t bo = 0;
if (ao2 > ao1) {
- std::cout << "Wafer determinds the size" << std::endl;
+ cout << "Wafer determinds the size" << endl;
ao = ao2;
bo = fInner->GetHighR() - ao * fInnerZ;
}
#ifndef ALIFMDDIGIT_H
# include "AliFMDDigit.h"
#endif
-#ifndef __IOSTREAM__
-# include <iostream>
-#endif
-#ifndef __IOMANIP__
-# include <iomanip>
-#endif
+# include <Riostream.h>
//====================================================================
ClassImp(AliFMDBaseDigit);
AliFMDBaseDigit::Print(Option_t* /* option*/) const
{
// Print digit to standard out
- std::cout << ClassName() << ": FMD" << fDetector << fRing << "["
- << std::setw(3) << fSector << ","
- << std::setw(3) << fStrip << "]"
- << std::endl;
+ cout << ClassName() << ": FMD" << fDetector << fRing << "["
+ << setw(3) << fSector << ","
+ << setw(3) << fStrip << "]"
+ << endl;
}
//====================================================================
{
// Print digit to standard out
AliFMDBaseDigit::Print();
- std::cout << "\t"
- << fCount1 << " (+ " << fCount2 << " + " << fCount2 << ") = "
- << Counts() << std::endl;
+ cout << "\t"
+ << fCount1 << " (+ " << fCount2 << " + " << fCount2 << ") = "
+ << Counts() << endl;
}
//====================================================================
{
// Print digit to standard out
AliFMDBaseDigit::Print();
- std::cout << "\t" << fEdep << " -> "
- << fCount1 << " (+ " << fCount2 << " + " << fCount2 << ") = "
- << Counts() << std::endl;
+ cout << "\t" << fEdep << " -> "
+ << fCount1 << " (+ " << fCount2 << " + " << fCount2 << ") = "
+ << Counts() << endl;
}
//____________________________________________________________________
#ifndef ALILOG_H
# include "AliLog.h"
#endif
-#ifndef __IOSTREAM__
-# include <iostream>
-#endif
-#ifndef __IOMANIP__
-# include <iomanip>
-#endif
+# include <Riostream.h>
//____________________________________________________________________
ClassImp(AliFMDHit);
AliFMDHit::Print(Option_t* /* option */) const
{
// Print Hit to standard out
- std::cout << "AliFMDHit: FMD"
- << fDetector << fRing << "["
- << std::setw(3) << fSector << ","
- << std::setw(3) << fStrip << "] = "
- << fEdep << std::endl;
+ cout << "AliFMDHit: FMD"
+ << fDetector << fRing << "["
+ << setw(3) << fSector << ","
+ << setw(3) << fStrip << "] = "
+ << fEdep << endl;
}
//____________________________________________________________________
#ifndef ALIFMDPARTICLES_H
# include "AliFMDParticles.h"
#endif
-#ifndef __IOSTREAM__
-# include <iostream>
-#endif
-#ifndef __IOMANIP__
-# include <iomanip>
-#endif
+# include <Riostream.h>
//____________________________________________________________________
ClassImp(AliFMDParticles)
void
AliFMDParticles::Print(Option_t* /* opt*/) const
{
- std::cout << "FMD Reconstructed particles: " << fParticles << "\n"
- << " Detector: FMD" << fDetector << fRing << "\n"
- << " Sector range: [" << fMinSector << "," << fMaxSector << "\n"
- << " Strip range: [" << fMinStrip << "," << fMaxStrip << "\n"
- << " Eta range: [" << fMinEta << "," << fMaxEta << "\n"
- << " Phi range: [" << fMinPhi << "," << fMaxPhi << "\n"
- << " Method: " << std::flush;
+ cout << "FMD Reconstructed particles: " << fParticles << "\n"
+ << " Detector: FMD" << fDetector << fRing << "\n"
+ << " Sector range: [" << fMinSector << "," << fMaxSector << "\n"
+ << " Strip range: [" << fMinStrip << "," << fMaxStrip << "\n"
+ << " Eta range: [" << fMinEta << "," << fMaxEta << "\n"
+ << " Phi range: [" << fMinPhi << "," << fMaxPhi << "\n"
+ << " Method: " << flush;
switch (fMethod) {
- case kPoission: std::cout << "Poission" << std::endl; break;
- case kIterative: std::cout << "Iterative" << std::endl; break;
- case kNaive: std::cout << "Naive" << std::endl; break;
- default: std::cout << "Unknown" << std::endl; break;
+ case kPoission: cout << "Poission" << endl; break;
+ case kIterative: cout << "Iterative" << endl; break;
+ case kNaive: cout << "Naive" << endl; break;
+ default: cout << "Unknown" << endl; break;
}
}
#ifndef __IOSTREAM__
# include <iostream>
#endif
+#include <math.h>
const Char_t* AliFMDRing::fgkRingFormat = "FRG%c";
const Char_t* AliFMDRing::fgkVirtualFormat = "FV%c%c";