Changeset 9375 for trunk/MagicSoft


Ignore:
Timestamp:
03/02/09 15:17:04 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9374 r9375  
    4040     mcorsika/MCorsikaEvtHeader.cc, mfilter/MFSoftwareTrigger.cc,
    4141     mgeom/MGeomCam.cc, mhcalib/MHCalibrationCam.cc,
    42      mhcalib/MHCalibrationChargeCam.cc, mhcalib/MHCalibrationPulseTimeCam.cc,
     42     mhcalib/MHCalibrationChargeCam.cc,  msignal/MSignalCam.cc,
     43     mhcalib/MHCalibrationPulseTimeCam.cc,
    4344     mhcalib/MHCalibrationRelTimeCam.cc, mhft/MHexagonalFTCalc.cc,
    4445     mhist/MHCamera.cc, mimage/MHillas.cc, mimage/MNewImagePar.cc,
    45      mjobs/MJCut.cc, mjobs/MJSimulation.cc, mpedestal/MExtractPedestal.cc,
    46      mpedestal/MPedPhotCam.cc, mpedestal/MPedestalCam.cc,
    47      mpointing/MPointingPos.h, msignal/MSignalCam.cc,
    48      msimcamera/MSimGeomCam.cc:
     46     mjobs/MJCut.cc, mjobs/MJSimulation.cc, mpedestal/MPedPhotCam.cc,
     47     mpedestal/MExtractPedestal.cc, mpointing/MPointingPos.h,
     48     mpedestal/MPedestalCam.cc, msimcamera/MSimGeomCam.cc,
     49     msimcamera/MSimRandomPhotons.cc:
    4950     - replaced MGeomPix by MGeom
    5051
     
    5253     - added BinningDist
    5354     - converted Muon cuts from mm to deg
     55
     56   * mhflux/MHCollectionArea.cc:
     57     - fixed a problem that a plot disappeared in old files
     58
     59   * mmuon/MMuonSearchPar.cc:
     60     - switched off the check in Paint (this works only for MAGIC :( )
    5461
    5562
  • trunk/MagicSoft/Mars/mhflux/MHCollectionArea.cc

    r9362 r9375  
    286286void MHCollectionArea::Paint(Option_t *option)
    287287{
    288     if (TString(option)=="paint4" && fMcAreaRadius>0)
    289     {
     288    // This is a workaround to support also older files
     289    if (TString(option)=="paint3")
     290        return;
     291
     292    if (TString(option)=="paint4")
     293    {
     294        if (fMcAreaRadius<=0)
     295            return;
     296
    290297        const TString txt = MString::Format("r_{max}=%.0fm --> A_{max}=%.0fm^{2}",
    291298                                            fMcAreaRadius, GetCollectionAreaAbs());
  • trunk/MagicSoft/Mars/msimcamera/MSimRandomPhotons.cc

    r9356 r9375  
    5757
    5858#include "MGeomCam.h"
    59 #include "MGeomPix.h"
     59#include "MGeom.h"
    6060
    6161#include "MPhotonEvent.h"
     
    212212// Read the parameters from the resource file.
    213213//
    214 //    FrequencyFixed: 40
    215 //    FrequencyNSB:   40
     214//    FrequencyFixed: 0.040
     215//    FrequencyNSB:   0.040
    216216//
    217217// The frequency is given in units fitting the units of the time.
Note: See TracChangeset for help on using the changeset viewer.