/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Markus Gaug 02/2004 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MExtractedSignalBlindPixel // // This is the storage container to hold informations about the extracted signal // (offset) value of the calibration Blind Pixel. // // There is place for various blind pixels set into the camera in July. Default // is one blind pixel. // ///////////////////////////////////////////////////////////////////////////// #include "MExtractedSignalBlindPixel.h" #include "MLog.h" #include "MLogManip.h" ClassImp(MExtractedSignalBlindPixel); using namespace std; static const Int_t gkSignalInitializer = 99999; // ------------------------------------------------------------------------ // // MExtractedSignalBlindPixel holds the extracted signal // of the FADC slices and its error. // // Additionally, the number of saturated Slices are stored. // // Default values for the extracted signals are: 99999.9 // MExtractedSignalBlindPixel::MExtractedSignalBlindPixel(const char* name, const char* title) { fName = name ? name : "MExtractedSignalBlindPixel"; fTitle = title ? title : "Container of the Extracted Signals"; fBlindPixelIdx.Set(1); fExtractedSignal.Set(1); fNumSaturated.Set(1); fPed.Set(1); fPedErr.Set(1); fPedRms.Set(1); fPedRmsErr.Set(1); Clear(); } // ------------------------------------------------------------------------ // // Invalidate values // void MExtractedSignalBlindPixel::Clear(Option_t *o) { for (Int_t i=0;i= 0 && fExtractedSignal.At(i) < gkSignalInitializer; } void MExtractedSignalBlindPixel::Print(Option_t *o) const { for (Int_t i=0;i