Changeset 3438


Ignore:
Timestamp:
03/07/04 21:11:42 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3431 r3438  
    5050    - add MBadPixelsCam
    5151
     52  * mcalib/MCalibrate.[h,cc]
     53  * mcalib/MCalibrateData.[h,cc]
     54    - implemented calls to MBadPixelsCam
     55
     56  * macros/calibration.C
     57  * macros/bootcampstandardanalysis.C
     58  * macros/pedphotcalc.C
     59    - implemented calls to MBadPixelsCam
     60
     61  * mjobs/MJCalibration.cc
     62    - call to MBadPixelsCam
     63     
    5264
    53652004/03/05: Nadia Tonello
  • trunk/MagicSoft/Mars/macros/pedphotcalc.C

    r3298 r3438  
    1717!   Author(s): Josep  Flix,  01/2004 <mailto:jflix@ifae.es>
    1818!              Javier Rico,  01/2004 <mailto:jrico@ifae.es>
     19!              Markus Gaug,  03/2004 <mailto:markus@ifae.es>
    1920!
    2021!   (based on bootcampstandardanalysis.C by Javier López)
     
    5152#include "MPedPhotCalc.h"
    5253#include "MPedPhotCam.h"
     54#include "MBadPixelsCam.h"
    5355#include "MHCamera.h"
    5456
     
    120122  MCalibrationChargeCam calcam;
    121123  MExtractedSignalCam   sigcam;
     124  MBadPixelsCam         badcam;
    122125
    123126  MCalibrationChargeCam        chargecam;
     
    131134  plist2.AddToList(&calcam);
    132135  plist2.AddToList(&sigcam);
     136  plist2.AddToList(&badcam); 
    133137  plist2.AddToList(&chargecam);
    134138  plist2.AddToList(&chargepin); 
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r3387 r3438  
    1717!
    1818!   Author(s): Thomas Bretz, 1/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
     19!              Markus Gaug, 02/2004 <mailto:markus@ifae.es>
    1920!
    2021!   Copyright: MAGIC Software Development, 2000-2004
     
    5556#include "MGeomApply.h"
    5657#include "MBadPixelsMerge.h"
     58#include "MBadPixelsCam.h"
    5759#include "MExtractSignal.h"
    5860#include "MExtractPINDiode.h"
     
    498500    plist.AddToList(&tlist);
    499501
    500     MGeomApply              apply;
    501     MBadPixelsMerge         merge(&fBadPixels);
    502     // MExtractSignal   extract; // Do not use this at the moment...
     502    MGeomApply               apply;
     503    MBadPixelsMerge          merge(&fBadPixels);
    503504    MExtractPINDiode         pinext;
    504505    MExtractBlindPixel       blindext;
     506    // MExtractSignal   extract; // Do not use this at the moment...
    505507    MExtractSignal2          extract;
    506508    MCalibrationChargeCalc   calcalc;
Note: See TracChangeset for help on using the changeset viewer.