Changeset 1083 for trunk/MagicSoft/Mars
- Timestamp:
- 11/15/01 12:17:20 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.h
r1051 r1083 24 24 void InitSize(UInt_t num) { fPixels->Expand(num); } 25 25 26 void AddPixel(Int_t id, Float_t nph, Float_t er r)26 void AddPixel(Int_t id, Float_t nph, Float_t er) 27 27 { 28 new ((*fPixels)[fNumPixels++]) MCerPhotPix(id, nph, er r);28 new ((*fPixels)[fNumPixels++]) MCerPhotPix(id, nph, er); 29 29 } 30 30 -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h
r1076 r1083 33 33 Bool_t Process(); 34 34 35 void Print(Option_t *o="") const; 36 35 37 Bool_t ProcessMessage(Int_t msg, Int_t submsg, Long_t param1, Long_t param2); 36 38 -
trunk/MagicSoft/Mars/mbase/MTaskList.h
r1076 r1083 21 21 { 22 22 private: 23 T OrdCollection*fTasks; // Container for the ordered list of different tasks24 MParList 23 TList *fTasks; // Container for the ordered list of different tasks 24 MParList *fParList; 25 25 26 26 UInt_t *fCntContinue; … … 50 50 void SetOwner(Bool_t enable=kTRUE); 51 51 52 const T OrdCollection*GetList() const { return fTasks; }52 const TList *GetList() const { return fTasks; } 53 53 54 54 ClassDef(MTaskList, 0) //collection of tasks to be performed in the eventloop
Note:
See TracChangeset
for help on using the changeset viewer.