]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpMotifReader.cxx
Added the possibility to do diagnostics histograms.
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpMotifReader.cxx
index 4a63bcd08cd63a94849f4fdc721d0af8457e662a..dc93d0f0bae958cba9050d6d0a9d2dc71dc4a019 100644 (file)
@@ -67,43 +67,12 @@ AliMpMotifReader::AliMpMotifReader()
 /// Default constructor
 }
 
-//_____________________________________________________________________________
-AliMpMotifReader::AliMpMotifReader(const AliMpMotifReader& right) 
-  : TObject(right) 
-{
-/// Protected copy constructor (not provided)
-
-  Fatal("AliMpMotifReader", "Copy constructor not provided.");
-}
-
 //_____________________________________________________________________________
 AliMpMotifReader::~AliMpMotifReader() 
 {
 /// Destructor  
 }
 
-//
-// operators
-//
-
-//_____________________________________________________________________________
-AliMpMotifReader& AliMpMotifReader::operator=(const AliMpMotifReader& right)
-{
-/// Protected assignment operator (not provided)
-
-  // check assignment to self
-  if (this == &right) return *this;
-
-  Fatal("operator =", "Assignment operator not provided.");
-    
-  return *this;  
-}    
-
-//
-// private methods
-//
-
-
 //
 // public methods
 //
@@ -121,7 +90,7 @@ AliMpMotifType* AliMpMotifReader::BuildMotifType(const TString& motifTypeId)
   TString padPosFileName(AliMpFiles::PadPosFilePath(fStationType, 
                                                     fPlaneType, motifTypeId));
   ifstream padPos(padPosFileName);
-  AliDebugStream(1) << "Opening file " << padPosFileName << endl;
+  AliDebugStream(2) << "Opening file " << padPosFileName << endl;
 
   PadMapType positions;
 
@@ -157,7 +126,7 @@ AliMpMotifType* AliMpMotifReader::BuildMotifType(const TString& motifTypeId)
 
   TString bergToGCFileName
     = AliMpFiles::BergToGCFilePath(fStationType);
-  AliDebugStream(1) << "Opening file " << bergToGCFileName << endl;
+  AliDebugStream(2) << "Opening file " << bergToGCFileName << endl;
 
   ifstream bergToGCFile(bergToGCFileName);
   const Int_t knbergpins = 
@@ -182,7 +151,7 @@ AliMpMotifType* AliMpMotifReader::BuildMotifType(const TString& motifTypeId)
   TString motifTypeFileName(AliMpFiles::MotifFilePath(fStationType, 
                                                       fPlaneType, motifTypeId));
   ifstream motif(motifTypeFileName);
-  AliDebugStream(1) << "Opening file " << motifTypeFileName << endl;
+  AliDebugStream(2) << "Opening file " << motifTypeFileName << endl;
 
   Int_t nofPadsX=0;
   Int_t nofPadsY=0;