Changeset 9427 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
04/16/09 12:14:40 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9426 r9427  
    8787     - write rates to an output container
    8888
    89   * ceres.rc:
    90     - adapted
     89   * ceres.rc:
     90     - adapted
     91
     92   * msimcamera/MSimAPD.[h,cc]:
     93     - take the acidental rate from a container
     94
    9195
    9296
  • trunk/MagicSoft/Mars/NEWS

    r9422 r9427  
    3232   * PDEs and mirror reflectivities have been linearily extrapolated
    3333     to match the wavelegth range between 290nm and 900nm
     34
     35   * There is no default pulse shape anymoe it must be given in
     36     the resource file
    3437
    3538 ;callisto:
  • trunk/MagicSoft/Mars/msimcamera/MSimAPD.cc

    r9369 r9427  
    6666#include "MPhotonData.h"
    6767
     68#include "MPedestalCam.h"
     69#include "MPedestalPix.h"
     70
    6871#include "MAvalanchePhotoDiode.h"
    6972
     
    122125    }
    123126
     127    fRates = (MPedestalCam*)pList->FindObject("AccidentalPhotonRates", "MPedestalCam");
     128    if (!fRates)
     129    {
     130        *fLog << inf;
     131        *fLog << "AccidentalPhotonRates [MPedestalCam] not found..." << endl;
     132        *fLog << " using " << fFreq << " as default for all G-APDs." << endl;
     133    }
     134
    124135    return kTRUE;
    125136}
     
    197208
    198209    for (UInt_t idx=0; idx<npix; idx++)
    199         static_cast<APD*>(fAPDs.UncheckedAt(idx))->FillRandom(fFreq, fStat->GetTimeFirst());
     210    {
     211        const Double_t freq = fRates ? (*fRates)[idx].GetPedestal() : fFreq;
     212        static_cast<APD*>(fAPDs.UncheckedAt(idx))->FillRandom(freq, fStat->GetTimeFirst());
     213    }
    200214
    201215    // Get number of photons
  • trunk/MagicSoft/Mars/msimcamera/MSimAPD.h

    r9369 r9427  
    1414class MPhotonEvent;
    1515class MPhotonStatistics;
     16class MPedestalCam;
    1617
    1718class MSimAPD : public MTask
     
    2122    MPhotonEvent      *fEvt;     //! Event storing the photon information
    2223    MPhotonStatistics *fStat;    //! Storing event statistics (needed for the start-time)
     24    MPedestalCam      *fRates;   //! Accidental Photon Rates for all pixels
    2325
    2426    TObjArray fAPDs;             //! Array keeping the necessary number of APDs
Note: See TracChangeset for help on using the changeset viewer.