]> jspc29.x-matter.uni-frankfurt.de Git - radhard.git/commitdiff
Bessere Darstellung in debugStream von MAPS.C
authorDennis Doering <doering@physik.uni-frankfurt.de>
Wed, 27 May 2015 10:25:47 +0000 (12:25 +0200)
committerDennis Doering <doering@physik.uni-frankfurt.de>
Wed, 27 May 2015 10:25:47 +0000 (12:25 +0200)
MABS_run_analyzer/MAPS.c

index 8ee210273bad9e8f9c101e60fbf5cb841a535d93..ea138b993ca97869125c7163a217facc57635bdd 100644 (file)
@@ -967,7 +967,7 @@ void MAPS::debugStream(const arraytype* (a), Int_t n, Int_t columns, Int_t preci
     {
         if (abs(a[i]) > highlightabove)
             std::cout << colorred;  
-        std::cout.width(precision+4);
+        std::cout.width(precision+5);
         std::cout << std::fixed;
         std::cout << std::left << std::setprecision(precision);          
         std::cout << a[i] << colorreset;
@@ -1486,7 +1486,7 @@ void MAPS::plotFrame(Int_t FrameNumber) {
     else {
         cout <<endl <<endl << colorwhite << "---------------- FRAME " << fFrameNumber << " ----------------" << colorreset << endl << endl;
         cout<<"CDS matrix:"<<endl;
-        debugStream<>(fCdsmatrix, fPixels, fColumns, 1, 19);
+        debugStream<>(fCdsmatrix, fPixels, fColumns, 0, 19);
         
         cout<<"Hitted pixel discriminator matrix:"<<endl;
         debugStream<>(fHittedPixel, fPixels, fColumns, 1, 1);