Ignore:
Timestamp:
05/03/12 12:38:22 (13 years ago)
Author:
Jens Buss
Message:
deleted useless cout
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/rootmacros/PulseTemplates/FPulseOverlay.C

    r13538 r13539  
    191191        const char*     drsfilename         = "../../data/2011/11/09/20111109_003.drs.fits.gz",
    192192        const char*     OutRootFileName     = "../../analysis/FPulseTemplate/20111109_006/20111109_006.pulses.root",
    193         bool            ProduceGraphic      = false,
     193        bool            ProduceGraphic      = true,
    194194        bool            spikeDebug          = false,
    195195        bool            debugPixel          = false,
    196196        bool            testmode            = false,
    197197        bool            saveResults         = false,
    198         int             verbosityLevel      = 6,        // different verbosity levels can be implemented here
     198        int             verbosityLevel      = 1,        // different verbosity levels can be implemented here
    199199        int             firstevent          = 1,        // Hast to be between 1 and infinity NOT 0!!!!
    200200        int             nevents             = -1,
    201201        int             firstpixel          = 0,
    202         int             npixel              = -1,
     202        int             npixel              = 1000,
    203203        int             sampleSetSize       = 40,
    204204        int             maxPulseOrder       = 3,
     
    396396// Initialize Pixel
    397397//----------------------------------------------------------------------------
    398     Pixel** pixel = new Pixel*[npixel-firstpixel];
    399 
    400     for (int i = 0 ; i < (npixel-firstpixel); i++)
     398    Pixel** pixel = new Pixel*[NPIX];
     399
     400    for (int i = 0 ; i < NPIX; i++)
    401401    {
    402402        pixel[i] = NULL;
     
    505505                // spikes are: 1 or 2 slice wide, positive non physical artifacts
    506506                if (verbosityLevel > 2) cout << "...removeing Spikes";
    507                 cout << "blaaa" << endl;
    508                 cout << "blaaa" << endl;
    509 
    510507                removeSpikes (Ameas, Vcorr);
    511508                if (verbosityLevel > 2) cout << "...done " << endl;
     
    525522                sliding_avg(Vcfd, Vcfd2, avg2);
    526523                if (verbosityLevel > 2) cout << "...done " << endl;
    527                 cout << "miauuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu" << endl;
    528524
    529525//-------------------------------------
     
    548544// Fill Overlay Histos
    549545//-----------------------------------------------------------------------------
    550                 cout << endl << "Filling Histograms of Pixel# [Set] " << pixelID
    551                      << " Pixel# [Got] " << pixel[pixelID]->mChid
    552                      << " Adress " << &pixel[pixelID] << endl;
     546                if (verbosityLevel > 2)
     547                {
     548                    cout << endl << "Filling Histograms of Pixel# [Set] " << pixelID
     549                         << " Pixel# [Got] " << pixel[pixelID]->mChid;
     550                }
    553551//                FillHistograms(
    554552//                            pixel[pixelID],
     
    560558//                            verbosityLevel
    561559//                            );
    562                 cout << endl << "got out of fillhisto" << endl;
    563560//-----------------------------------------------------------------------------
    564561// Spike Debug
     
    617614//-------------------------------------
    618615
    619             cout << endl << "Last Pixel# [Set] " << (firstPixelOfSample + sampleSetSize-1);
    620             cout << " Pixel# [Got] " << pixel[firstPixelOfSample + sampleSetSize-1]->mChid
    621                  << " Adress " << &pixel[firstPixelOfSample + sampleSetSize-1]
    622                  << " Adress [Got]" << &pixel[firstPixelOfSample + sampleSetSize-1]->mChid;
    623616
    624617        }//End of Loop over Events
     
    661654
    662655            //Save Histograms of Pixels into Output rootfile
    663             cout << endl << "Saving Pixel# [Set] " << pixelID
    664                  << " Pixel# [Got] " << pixel[pixelID]->mChid
    665                  << " Adress " << &pixel[pixelID];
     656            if (verbosityLevel > 2)
     657            {
     658                cout << endl << "Saving Pixel# [Set] " << pixelID
     659                 << " Pixel# [Got] " << pixel[pixelID]->mChid;
     660            }
    666661            pixel[pixelID]->SavePixelHistograms( OutRootFileName, saveResults );
    667662
     
    680675            }
    681676
    682             cout << endl << "Deleting Pixel# [Set] " << pixelID
    683                  << " Pixel# [Got] " << pixel[pixelID]->mChid
    684                  << " Adress " << &pixel[pixelID]
    685                  << " ChidAdress " << &pixel[pixelID]->mChid ;
     677            if (verbosityLevel > 2)
     678            {
     679                cout << endl << "Deleting Pixel# [Set] " << pixelID
     680                     << " Pixel# [Got] " << pixel[pixelID]->mChid;
     681            }
    686682            delete pixel[pixelID];
    687683
Note: See TracChangeset for help on using the changeset viewer.