Ignore:
Timestamp:
Sep 27, 2013, 9:36:51 AM (11 years ago)
Author:
dagoret
Message:

bug due to a comment left corrected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • equalization_gain/trunk/src/PlotScurvesAll-diffFit.h

    r191 r197  
    66#define _PLOTSCURVESALLDIFFFIT_H_
    77
     8#include <iostream>
     9#include "TString.h"
    810#include "PlotScurvesAll-diffFitConst.h"
    911
     12
     13class TCanvas;
     14class TH1D;
     15class TF1;
    1016
    1117void PlotScurve(
     
    6167private:
    6268
     69 void Init();
     70 void OpenGainFile(const TString);
     71 void FillHistoName();
     72 void ReadGainFile(const TString,Bool_t);
     73
    6374// common variables to the analysis
    6475     TString *input;
     
    8394     Double_t flag_fit[kNch];
    8495
     96     //canvas pointers
     97
     98     TCanvas *c1; //smoothed S-curves
     99     TCanvas *c2; //differentiated histograms of smoothed s-curves
     100     TCanvas *c5;
     101     TCanvas *c3;           
     102     TCanvas *c4;
     103
     104     //histograms
     105
     106     TString  name_hist[kNch];
     107     TString  name_hist_ped[kNch];
     108     TString  name_hist_diff[kNch];
     109     TString  name_hist_diff_fit[kNch];
     110     TString  name_fit_diff[kNch];
     111     TH1D    *hist_scurve; // smoothed S-curves
     112     TH1D    *hist_scurve_ped; // S-curves for pedestal runs
     113     TH1D    *hist_diff; // differentiated histograms of smoothed s-curves
     114     TH1D    *hist_diff_fit; // differentiated histograms of fitted s-curves
     115     TF1     *fit_sdiff;  // function fitted on differentiated histograms of fitted s-curves
     116
     117
     118     
     119
    85120};
    86121
Note: See TracChangeset for help on using the changeset viewer.