Ignore:
Timestamp:
05/08/12 10:56:16 (12 years ago)
Author:
Jens Buss
Message:
second constructor fpr loading allready produced histos, also took away
standard values couse they did not work for overloading
File:
1 edited

Legend:

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

    r13584 r13591  
    4040    /** Default constructor.
    4141    */
    42 //    Pixel(int pixelID);
    4342    Pixel(
    44             int pixelID                 = 0,
    45             int maxPulsorder            = 1,
    46             int verbosityLevel          = 0,
    47             int pixelOverlayXaxisLeft   = 50,
    48             int pixelOverlayXaxisRight  = 250,
    49             int bSLMean                 = -1,
    50             int gainMean                = 10,
    51             TString options             = ""
     43            int     pixelID,
     44            int     maxPulsorder,
     45            int     verbosityLevel,
     46            bool    stats,
     47            TFile*  filename
     48            );
     49
     50    Pixel(
     51            int     pixelID,
     52            int     maxPulsorder,
     53            int     verbosityLevel,
     54            bool    stats,
     55            TFile*  filename,
     56            int     pixelOverlayXaxisLeft,
     57            int     pixelOverlayXaxisRight,
     58            int     bSLMean,
     59            int     gainMean,
     60            TString options
    5261        );
    5362
    5463
    55 //    /** Copy constructor.
    56 //    *
    57 //    * @param from The value to copy to this object.
    58 //    */
    59 //    XX(const XX& from);
     64    //    /** Copy constructor.
     65    //    *
     66    //    * @param from The value to copy to this object.
     67    //    */
    6068
    6169
     
    92100
    93101    void SavePixelHistograms(const char *loc_fname, bool);
     102    void LoadPulseHistos( );
     103
     104    TString HistoTitle(
     105            TString     histo_title,
     106            int         order
     107            );
     108
     109    TString HistoName(
     110            TString     histoname,
     111            int         order
     112            );
    94113
    95114// ACCESS
    96115// INQUIRY
    97116    int             mChid;
     117    bool            mStats;
    98118    int             mMaxPulseOrder;
    99119    int             mVerbosityLevel;
     
    113133    TObjArray*      hList;
    114134
     135    TFile*          mRootFile;
     136
    115137protected:
    116138private:
Note: See TracChangeset for help on using the changeset viewer.