Ignore:
Timestamp:
06/24/03 15:01:48 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawEvtData.cc

    r2207 r2229  
    213213//     "GRAPH"      A graph is drawn
    214214//     "HIST"       A histogram is drawn
    215 //     number       The pixel with the given number is drawn
     215//     <index>      The pixel with the given index is drawn
    216216//
    217217void MRawEvtData::Draw(Option_t *opt)
     
    279279    {
    280280        // FIXME: Add Legend
    281         *fLog << "Drawing Histogram of Pixel with Idx " << pix.GetPixelId() << endl;
    282 
    283         TH1F *histh = new TH1F(name, "FADC Samples",      nh, -0.5, nh-.5);
     281        *fLog << "Drawing Histogram of Pixel with Idx #" << pix.GetPixelId() << endl;
     282
     283        TH1F *histh = new TH1F(name, "FADC Samples", nh, -0.5, nh-.5);
    284284        histh->SetXTitle("Time [FADC Slices]");
    285285        histh->SetYTitle("Signal [FADC Units]");
Note: See TracChangeset for help on using the changeset viewer.