Ignore:
Timestamp:
11/14/11 19:39:12 (13 years ago)
Author:
neise
Message:
should work now ...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/rootmacros/fbsl.C

    r12514 r12517  
    8888TCanvas* cFilter;
    8989
    90 int spikeDebug = 0;
    91 int searchSinglesPeaks = 0;
    9290
    9391int fbsl(
     
    10098        int firstpixel          = 0,
    10199        int npixel                              = -1,
     100        int spikeDebug = 0,
     101        int searchSinglesPeaks = 0,
    102102        bool produceGraphic = true
    103103){
     
    142142            datafile->GetRow( ev );
    143143               
    144                 if ( ev % 100 == 0 ){
     144                if( ev % 100 == 0){
    145145                        cout << "Event ID: " << EventID << endl;
    146                 }
    147                
     146                        }
     147       
    148148                // loop over pixel
    149149                for ( int pix = firstpixel ; pix < npixel+firstpixel ; pix++ ){
     
    165165                        sliding_avg(Vcorr, Vslide, 8);
    166166
    167             for ( unsigned int sl = 0; sl <RegionOfInterest ; sl++){
     167            for ( unsigned int sl = 0; sl < Vslide.size() ; sl++){
    168168               // hPixelCellData.Fill( sl, Vcorr[sl] );
    169169               hBaseline[pix-firstpixel]->Fill( Vslide[sl] ) ;
    170170            }   
    171171            }
    172     }
     172        }
    173173
    174174    FILE *fp;
     
    183183
    184184    for (int pix = firstpixel; pix < firstpixel+npixel; pix++) {
    185 
    186         float vmaxprob = hBaseline[pix]->GetXaxis()->GetBinCenter(
     185        float vmaxprob = hBaseline[pix-firstpixel]->GetXaxis()->GetBinCenter(
    187186            hBaseline[pix-firstpixel]->GetMaximumBin() );
    188187
     
    198197
    199198    fclose( fp );
     199
    200200
    201201    SaveHistograms( RootOutFileName );
Note: See TracChangeset for help on using the changeset viewer.