X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=FMD%2FAliFMDIndex.cxx;h=062009e8379018a56213d2e03a24a82a229dab9c;hb=6101915dbee83b3183f8486c50a9ade207717a50;hp=1c91261e812ae5c02a5e288036a3c61db6d22ad1;hpb=02a27b508bdd34a6febe776298cc20b18fdbb2ed;p=u%2Fmrichter%2FAliRoot.git diff --git a/FMD/AliFMDIndex.cxx b/FMD/AliFMDIndex.cxx index 1c91261e812..062009e8379 100644 --- a/FMD/AliFMDIndex.cxx +++ b/FMD/AliFMDIndex.cxx @@ -38,6 +38,8 @@ #include //==================================================================== +using std::cout; +using std::flush; ClassImp(AliFMDIndex) #if 0 ; // This is here to keep Emacs from indenting the next line @@ -49,7 +51,8 @@ AliFMDIndex::AliFMDIndex() fRing('\0'), fSector(0), fStrip(0), - fHash(-1) + fName(""), + fHash(-1) { // CTOR } @@ -60,6 +63,7 @@ AliFMDIndex::AliFMDIndex(const AliFMDIndex& o) fRing(o.fRing), fSector(o.fSector), fStrip(o.fStrip), + fName(""), fHash(o.fHash) { // Copy constructor @@ -74,6 +78,7 @@ AliFMDIndex::AliFMDIndex(UShort_t detector, fRing(ring), fSector(sector), fStrip(strip), + fName(""), fHash(-1) { // @@ -92,6 +97,7 @@ AliFMDIndex& AliFMDIndex::operator=(const AliFMDIndex& o) { // Assignment operator + if (&o == this) return *this; fDetector = o.fDetector; fRing = o.fRing; fSector = o.fSector;