Changeset 1083 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/15/01 12:17:20 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.h

    r1051 r1083  
    2424    void   InitSize(UInt_t num) { fPixels->Expand(num); }
    2525
    26     void   AddPixel(Int_t id, Float_t nph, Float_t err)
     26    void   AddPixel(Int_t id, Float_t nph, Float_t er)
    2727    {
    28         new ((*fPixels)[fNumPixels++]) MCerPhotPix(id, nph, err);
     28        new ((*fPixels)[fNumPixels++]) MCerPhotPix(id, nph, er);
    2929    }
    3030
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h

    r1076 r1083  
    3333    Bool_t Process();
    3434
     35    void Print(Option_t *o="") const;
     36
    3537    Bool_t ProcessMessage(Int_t msg, Int_t submsg, Long_t param1, Long_t param2);
    3638
  • trunk/MagicSoft/Mars/mbase/MTaskList.h

    r1076 r1083  
    2121{
    2222private:
    23     TOrdCollection *fTasks;     // Container for the ordered list of different tasks
    24     MParList       *fParList;
     23    TList    *fTasks;   // Container for the ordered list of different tasks
     24    MParList *fParList;
    2525
    2626    UInt_t *fCntContinue;
     
    5050    void SetOwner(Bool_t enable=kTRUE);
    5151
    52     const TOrdCollection *GetList() const { return fTasks; }
     52    const TList *GetList() const { return fTasks; }
    5353
    5454    ClassDef(MTaskList, 0)      //collection of tasks to be performed in the eventloop
Note: See TracChangeset for help on using the changeset viewer.