Changeset 847


Ignore:
Timestamp:
06/13/01 12:08:54 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/NEWS

    r759 r847  
    11                                                               -*-*- 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)
    315       
    416    - Many demo macros added   
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.h

    r715 r847  
    4747  MCerPhotPix &operator[](int i) { return *(MCerPhotPix*)(fPixels->At(i)); }
    4848
    49   ClassDef(MCerPhotEvt, 1)    // class for Nphotons Events
     49  ClassDef(MCerPhotEvt, 1)    // class for an event containing cerenkov photons
    5050};
    5151
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r666 r847  
    3838  void SetErrorPhot(Float_t f)  { fErrPhot = f; }
    3939 
    40   ClassDef(MCerPhotPix, 1)  // Cerenkov Photons class for the pixel
     40  ClassDef(MCerPhotPix, 1)  // class containing information about the Cerenkov Photons in a pixel
    4141} ;
    4242
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h

    r716 r847  
    3232    Bool_t Process();
    3333
    34     ClassDef(MImgCleanStd, 0)    // class for Nphotons Events
     34    ClassDef(MImgCleanStd, 0)    // task doing a standard image cleaning
    3535};
    3636
  • trunk/MagicSoft/Mars/manalysis/MMcPedestalCopy.h

    r698 r847  
    3434    Bool_t Process();
    3535
    36     ClassDef(MMcPedestalCopy, 0)   // Task to calculate Hillas parameters
     36    ClassDef(MMcPedestalCopy, 0)   // Task which copies the pedestals from the MC into the standard container
    3737};
    3838
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r843 r847  
    154154//  dictionary. If this isn't possible NULL is returned.
    155155//
     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//
    156161//  By default (you don't specify an object name) the object name is
    157162//  the same as the classname
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx

    r669 r847  
    104104
    105105
    106   ClassDef(MMcEvt, 1)  //Stores Montecarlo Information
     106  ClassDef(MMcEvt, 1)  //Stores Montecarlo Information of one event (eg. the energy)
    107107
    108108};
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx

    r698 r847  
    6262  const UInt_t GetNumPixel() const { return MFADC_CHANNELS; }
    6363
    64   ClassDef(MMcFadcHeader, 1)  //Stores Montecarlo Information
     64  ClassDef(MMcFadcHeader, 1)  //Stores Montecarlo Information describing the FADC behaviour
    6565
    6666};
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.hxx

    r697 r847  
    6868  Byte_t IsPixelFired(Int_t npix, Int_t nfirstlevel);
    6969
    70   ClassDef(MMcTrig, 1)  //Stores Montecarlo Information
     70  ClassDef(MMcTrig, 1)  //Stores Montecarlo Information (number of 1st, 2nd level triggers)
    7171
    7272};
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcTrigHeader.hxx

    r612 r847  
    8686  }
    8787
    88   ClassDef(MMcTrigHeader, 1)  //Stores Montecarlo Information
     88  ClassDef(MMcTrigHeader, 1)  //Stores Montecarlo Information which describes the used trigger
    8989
    9090};
Note: See TracChangeset for help on using the changeset viewer.