Changeset 201 in JEM-EUSO


Ignore:
Timestamp:
Sep 27, 2013, 12:19:33 PM (11 years ago)
Author:
dagoret
Message:

class Analysis finished and its compile but need to be debuged

Location:
equalization_gain/trunk/src
Files:
4 edited

Legend:

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

    r200 r201  
    775775{
    776776 
    777    
     777  cout << " analysis initialisation " << endl;
    778778
    779779 /*********************** SIGNAL RUN ********************/
     
    812812// Main public function of Analysis
    813813//--------------------------------------------------------------------------------------------------------
     814/*
    814815void Analysis::PlotScurve(
    815816                Int_t    kDrawCh=31,
     
    824825                Bool_t   kBoard=0, //0:ASIC_C, 1:ASIC_D
    825826                Int_t    kChRef=kRefCh,//ASIC_C
    826                 Bool_t   checkAve=0 //0:use ref pix, 1:check average*/
     827                Bool_t   checkAve=0 //0:use ref pix, 1:check average
    827828                )
     829*/
     830void Analysis:: PlotScurve(
     831                Int_t    kDrawCh,
     832                TString  fname,
     833                TString  fname_ped, //ASIC_D ped_file
     834                Double_t dac_half_spe_fix,
     835                TString  fname_gain,
     836                Int_t    fit_min,
     837                Int_t    fit_max,
     838                Int_t    fit_min_scurve,
     839                Int_t    fit_max_scurve,
     840                Bool_t   kBoard, //0:ASIC_C, 1:ASIC_D
     841                Int_t    kChRef,//ASIC_C
     842                Bool_t   checkAve //0:use ref pix, 1:check average
     843                )
     844
     845
     846
    828847{
    829848
  • equalization_gain/trunk/src/PlotScurvesAll-diffFit.h

    r200 r201  
    4848
    4949void PlotScurve(
     50                Int_t    kDrawCh=31,
     51                TString  fname=kFname,
     52                TString  fname_ped=kFnamePed, //ASIC_D ped_file
     53                Double_t dac_half_spe_fix = -1,
     54                TString  fname_gain="gain-org.txt",
     55                Int_t    fit_min=kFitMin,
     56                Int_t    fit_max=kFitMax,
     57                Int_t    fit_min_scurve=kFitMinS,
     58                Int_t    fit_max_scurve=kFitMaxS,
     59                Bool_t   kBoard=0, //0:ASIC_C, 1:ASIC_D
     60                Int_t    kChRef=kRefCh,//ASIC_C
     61                Bool_t   checkAve=0 //0:use ref pix, 1:check average
     62                );
     63/*
     64void PlotScurve(
    5065                Int_t    kDrawCh,
    5166                TString  fname,
     
    6277                );
    6378
    64 
     79*/
    6580
    6681
  • equalization_gain/trunk/src/PlotScurvesAllMain.cc

    r191 r201  
    2020   TRint *theApp=new TRint("ROOT-PlotScurvesAll",&argc,argv);
    2121   
    22    Help();
     22   //Help();
    2323   
    2424   PlotScurve();
    2525
     26   // to debug
    2627   //Analysis* pa = new Analysis;
    27    //pa->Print();
     28   //pa->PlotScurve();
    2829
    2930    theApp->Run();
Note: See TracChangeset for help on using the changeset viewer.