Changeset 847 for trunk/MagicSoft/Mars
- Timestamp:
- 06/13/01 12:08:54 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/NEWS
r759 r847 1 1 -*-*- END -*-*- 2 *** Version 0.2 (2001/04/23) 2 3 *** Version 0.4 4 5 - Added a task to write a container to an Ascii file (MWriteAsciiFile) 6 7 - Added calculation of the Enegry Threshold 8 9 - Added calculation of the collection area 10 11 - removed some bugs in the Hillas calculation 12 13 14 *** Version 0.3 (2001/04/23) 3 15 4 16 - Many demo macros added -
trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.h
r715 r847 47 47 MCerPhotPix &operator[](int i) { return *(MCerPhotPix*)(fPixels->At(i)); } 48 48 49 ClassDef(MCerPhotEvt, 1) // class for Nphotons Events49 ClassDef(MCerPhotEvt, 1) // class for an event containing cerenkov photons 50 50 }; 51 51 -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
r666 r847 38 38 void SetErrorPhot(Float_t f) { fErrPhot = f; } 39 39 40 ClassDef(MCerPhotPix, 1) // Cerenkov Photons class for thepixel40 ClassDef(MCerPhotPix, 1) // class containing information about the Cerenkov Photons in a pixel 41 41 } ; 42 42 -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h
r716 r847 32 32 Bool_t Process(); 33 33 34 ClassDef(MImgCleanStd, 0) // class for Nphotons Events34 ClassDef(MImgCleanStd, 0) // task doing a standard image cleaning 35 35 }; 36 36 -
trunk/MagicSoft/Mars/manalysis/MMcPedestalCopy.h
r698 r847 34 34 Bool_t Process(); 35 35 36 ClassDef(MMcPedestalCopy, 0) // Task to calculate Hillas parameters36 ClassDef(MMcPedestalCopy, 0) // Task which copies the pedestals from the MC into the standard container 37 37 }; 38 38 -
trunk/MagicSoft/Mars/mbase/MParList.cc
r843 r847 154 154 // dictionary. If this isn't possible NULL is returned. 155 155 // 156 // An object which was created automatically is deleted automatically in 157 // the destructor of the parameter list, too. This means, that if an 158 // object should survive (eg. Histograms) you MUST create it by yourself 159 // and add it to the parameter list. 160 // 156 161 // By default (you don't specify an object name) the object name is 157 162 // the same as the classname
Note:
See TracChangeset
for help on using the changeset viewer.