Ignore:
Timestamp:
05/03/12 12:47:49 (13 years ago)
Author:
neise
Message:
un-uncommented Fill Histograms and removed some debugging couts
File:
1 edited

Legend:

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

    r13539 r13540  
    188188//----------------------------------------------------------------------------
    189189int FPulseOverlay(
    190         const char*     datafilename        = "../../data/2011/11/09/20111109_006.fits.gz",
    191         const char*     drsfilename         = "../../data/2011/11/09/20111109_003.drs.fits.gz",
    192         const char*     OutRootFileName     = "../../analysis/FPulseTemplate/20111109_006/20111109_006.pulses.root",
     190        const char*     datafilename        = "/fact/raw/2011/11/09/20111109_006.fits.gz",
     191        const char*     drsfilename         = "/fact/raw/2011/11/09/20111109_003.drs.fits.gz",
     192        const char*     OutRootFileName     = "test.root",
    193193        bool            ProduceGraphic      = true,
    194194        bool            spikeDebug          = false,
     
    198198        int             verbosityLevel      = 1,        // different verbosity levels can be implemented here
    199199        int             firstevent          = 1,        // Hast to be between 1 and infinity NOT 0!!!!
    200         int             nevents             = -1,
     200        int             nevents             = 100,
    201201        int             firstpixel          = 0,
    202202        int             npixel              = 1000,
     
    475475                                histoOptions
    476476                                );
    477                     cout << "Created Pixel# Set " << pixelID
    478                          << " Pixel# Get " << pixel[pixelID]->mChid
    479                          << " Adress " << &pixel[pixelID] << endl;
    480 
    481477                }
    482478
     
    549545                         << " Pixel# [Got] " << pixel[pixelID]->mChid;
    550546                }
    551 //                FillHistograms(
    552 //                            pixel[pixelID],
    553 //                            pZXings,
    554 //                            AmplWindowWidth,
    555 //                            ev,
    556 //                            histoOptions,
    557 //                            maxPulseOrder,
    558 //                            verbosityLevel
    559 //                            );
     547                FillHistograms(
     548                            pixel[pixelID],
     549                            pZXings,
     550                            AmplWindowWidth,
     551                            ev,
     552                            histoOptions,
     553                            maxPulseOrder,
     554                            verbosityLevel
     555                            );
    560556//-----------------------------------------------------------------------------
    561557// Spike Debug
     
    614610//-------------------------------------
    615611
    616 
    617612        }//End of Loop over Events
    618613//-------------------------------------
     
    820815        )
    821816{
    822     cout << endl << "begin Pixel " << CurrentPixel->mChid << endl;
    823817    if (verbosityLevel > 2) cout << endl << "...filling pulse histograms" ;
    824818    bool use_this_peak=false;
    825819    int order_of_pulse=0;
    826820    vector<Region>::iterator reg;
    827     cout << endl << "begin for " << endl;
    828821    //Loop over all found zerocrossings in Region
    829822    for (reg = pZXings->begin() ; reg < pZXings->end() ; reg++)
    830823    {
    831     cout << endl << "for" << endl;
    832824        //skip those who are at the Rim of the ROI
    833825        if (reg->maxPos < 12 || (unsigned int) reg->maxPos > gRegionOfInterest-12)
     
    836828            continue;
    837829        }
    838     cout << endl << "def" << endl;
    839830        // Define axis range of Histogram
    840831        int Left        = reg->maxPos - gPixelOverlayXaxisLeft;
     
    854845
    855846        //determine order of pulse and which histogram shall be filled
    856 //        if (verbosityLevel > 2)
    857             cout << endl << "\t...choosing Histogram" ;
    858847        for(int order = 0; order < maxPulseOrder; order++)
    859848        {
     
    881870            }
    882871        }
    883         cout << endl << "middle" << endl;
    884872        //Fill overlay und profile histograms
    885873        if (use_this_peak){
    886 //            if (verbosityLevel > 2)
    887                 cout << "...filling" ;
    888874            for ( int pos = Left; pos < Right; pos++){
    889875//                if ();
     
    904890   }
    905891    if (verbosityLevel > 2) cout << "...done" << endl;
    906     cout << endl << "end" << endl;
    907892}
    908893// end of FillHistograms
Note: See TracChangeset for help on using the changeset viewer.