Changeset 13855


Ignore:
Timestamp:
05/24/12 02:24:59 (12 years ago)
Author:
Jens Buss
Message:
modification of verbosity output
File:
1 edited

Legend:

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

    r13784 r13855  
    2020        float       bSLMean,
    2121        float       gainMean,
    22         TFile*      filename
     22        TFile*      filename,
     23        TFile*      outfilename
    2324        )
    2425{
     
    3536    mGainMean               = gainMean;
    3637    mRootFile               = filename;
     38    mOutRootFile            = outfilename;
    3739
    3840    hMaxOverlay  = new TH2F*[mMaxPulseOrder];
     
    165167        pixelCanvas[pulse_order]->cd( histoFrameNr[2] );
    166168        hMaxProfile[pulse_order]->Draw();
    167         hEdgeProfile[pulse_order]->Draw("SAME");
    168169
    169170        pixelCanvas[pulse_order]->cd( histoFrameNr[1] );
    170171        hEdgeOverlay[pulse_order]->Draw("COLZ");
     172        pixelCanvas[pulse_order]->cd( histoFrameNr[3] );
     173        hEdgeProfile[pulse_order]->Draw();
    171174    }
    172175}
     
    265268void
    266269Pixel::SavePixelHistograms(
    267         TString outRootFileName,
     270        TString     outRootFileName,
    268271        bool        saveResults
    269272        )
     
    281284// end of SavePixelHistograms
    282285//----------------------------------------------------------------------------
    283 
    284 
    285286
    286287TString
     
    683684Pixel::LoadPulseHistos()
    684685{
    685     if (mVerbosityLevel > 1)
    686     {
    687         mRootFile->ls();
    688         cout << "Current File: " ;
     686    mRootFile->cd();
     687
     688    if (mVerbosityLevel > 2)
     689    {
     690        if (mVerbosityLevel > 3)
     691        {
     692            mRootFile->ls();
     693        }
     694        cout << "loading current File: " ;
    689695        gFile->pwd();
    690696    }
     
    693699    mDirectory = gDirectory;
    694700
    695     if (mVerbosityLevel > 1)
    696     {
     701    if (mVerbosityLevel > 2)
     702    {
     703        if (mVerbosityLevel > 3)
     704        {
     705            gDirectory->ls();
     706        }
    697707        cout << "Current Directory: " ;
    698         gDirectory->ls();
     708        gDirectory->pwd();
    699709    }
    700710
     
    717727        if (mVerbosityLevel > 3) cout << "\t...loading " << HistoName("hMaxProfile", order) << endl;
    718728        hMaxProfile[order]  = (TProfile*)mDirectory->Get( ChooseCycleNumber( HistoName("hMaxProfile", order), 1) );
    719         cout << "histoname: " << HistoName("hMaxProfile", order)
    720              << "histoname: " << ChooseCycleNumber( HistoName("hMaxProfile", order), 1)
    721              << "histoname: " << hMaxProfile[order];
     729
    722730        if (mVerbosityLevel > 3) cout << "\t...loading " << HistoName("hEdgeProfile", order) << endl;
    723731        hEdgeProfile[order] = (TProfile*)mDirectory->Get( ChooseCycleNumber( HistoName("hEdgeProfile", order), 1) );
     
    912920        if (mVerbosityLevel > 3)
    913921        cout << endl << "\t\t...deleting hPixelEdgeMax"
    914                                       << mChid << "_" << order
    915                                       << " hPixelEdgeMax[order] adr " << hPixelEdgeMax[order]
    916                                       << " hPixelEdgeMax adr " << hPixelEdgeMax
    917                                          ;
     922                                      << mChid << "_" << order;
    918923
    919924        delete hPixelEdgeMax[order];
Note: See TracChangeset for help on using the changeset viewer.