Ignore:
Timestamp:
02/10/04 11:17:36 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc

    r3079 r3080  
    3535// 3) It initializes a pointer to an MCalibrationPINDiode container
    3636//
     37//
     38// The calculated values (types of GetPixelContent) are:
     39//
     40// Fitted values:
     41// ==============
     42//
     43// 0: Fitted Charge
     44// 1: Error of fitted Charge
     45// 2: Sigma of fitted Charge
     46// 3: Error of Sigma of fitted Charge
     47//
     48// Useful variables derived from the fit results:
     49// =============================================
     50//
     51// 4: Returned probability of Gauss fit to Charge distribution
     52// 5: Reduced Sigma of fitted Charge --> sqrt(sigma_Q^2 - PedRMS^2)
     53// 6: Error Reduced Sigma of fitted Charge
     54// 7: Reduced Sigma per Charge
     55// 8: Error of Reduced Sigma per Charge
     56//
     57// Results of the different calibration methods:
     58// =============================================
     59//
     60// 9: Number of Photo-electrons obtained with the F-Factor method
     61// 10: Error on Number of Photo-electrons obtained with the F-Factor method
     62// 11: Mean conversion factor obtained with the F-Factor method
     63// 12: Error on the mean conversion factor obtained with the F-Factor method
     64// 13: Overall F-Factor of the readout obtained with the F-Factor method
     65// 14: Error on Overall F-Factor of the readout obtained with the F-Factor method
     66// 15: Number of Photons inside Plexiglass obtained with the Blind Pixel method
     67// 16: Error on Number of Photons inside Plexiglass obtained with the Blind Pixel method
     68// 17: Mean conversion factor obtained with the Blind Pixel method
     69// 18: Error on the mean conversion factor obtained with the Blind Pixel method
     70// 19: Overall F-Factor of the readout obtained with the Blind Pixel method
     71// 20: Error on Overall F-Factor of the readout obtained with the Blind Pixel method
     72// 21: Number of Photons outside Plexiglass obtained with the PIN Diode method
     73// 22: Error on Number of Photons outside Plexiglass obtained with the PIN Diode method
     74// 23: Mean conversion factor obtained with the PIN Diode method
     75// 24: Error on the mean conversion factor obtained with the PIN Diode method
     76// 25: Overall F-Factor of the readout obtained with the PIN Diode method
     77// 26: Error on Overall F-Factor of the readout obtained with the PIN Diode method
     78//
     79// Localized defects:
     80// ==================
     81//
     82// 27: Excluded Pixels
     83// 28: Pixels where the fit did not succeed --> results obtained only from the histograms
     84// 29: Pixels with succeeded fit, but apparently wrong results
     85// 30: Pixels with un-expected behavior in the fourier spectrum (e.g. oscillations)
     86//
     87// Other classifications of pixels:
     88// ================================
     89//
     90// 31: Pixels with saturated Hi-Gain
     91//
     92// Classification of validity of the calibrations:
     93// ===============================================
     94//
     95// 32: Pixels with valid calibration by the F-Factor-Method
     96// 33: Pixels with valid calibration by the Blind Pixel-Method
     97// 34: Pixels with valid calibration by the PIN Diode-Method
     98//
     99// Used Pedestals:
     100// ===============
     101//
     102// 35: Mean Pedestal over the entire range of signal extraction
     103// 36: Error on the Mean Pedestal over the entire range of signal extraction
     104// 37: Pedestal RMS over the entire range of signal extraction
     105// 38: Error on the Pedestal RMS over the entire range of signal extraction
     106//
     107// Calculated absolute arrival times (very low precision!):
     108// ========================================================
     109//
     110// 39: Absolute Arrival time of the signal
     111// 40: Error on the Absolute Arrival time of the signal
     112// 41: RMS of the Absolute Arrival time of the signal
     113// 42: Error on the RMS of the Absolute Arrival time of the signal
     114//
    37115/////////////////////////////////////////////////////////////////////////////
    38116#include "MCalibrationCam.h"
     
    378456}
    379457 
    380 
     458// --------------------------------------------------------------------------
     459//
    381460// The types are as follows:
    382461//
     462// Fitted values:
     463// ==============
     464//
    383465// 0: Fitted Charge
    384466// 1: Error of fitted Charge
    385467// 2: Sigma of fitted Charge
    386468// 3: Error of Sigma of fitted Charge
     469//
     470// Useful variables derived from the fit results:
     471// =============================================
     472//
    387473// 4: Returned probability of Gauss fit to Charge distribution
    388 // 5: Mean arrival time
    389 // 6: Sigma of the arrival time
    390 // 7: Chi-square of the Gauss fit to the arrival times
    391 // 8: Pedestal
    392 // 9: Pedestal RMS
    393 // 10: Reduced Sigma Square
    394 // 11: Number of Photo-electrons after the F-Factor method
    395 // 12: Error on the Number of Photo-electrons after the F-Factor method
    396 // 13: Mean conversion factor after the F-Factor method
    397 // 14: Error on the conversion factor after the F-Factor method
    398 // 15: Number of Photons after the Blind Pixel method
    399 // 16: Mean conversion factor after the Blind Pixel method
     474// 5: Reduced Sigma of fitted Charge --> sqrt(sigma_Q^2 - PedRMS^2)
     475// 6: Error Reduced Sigma of fitted Charge
     476// 7: Reduced Sigma per Charge
     477// 8: Error of Reduced Sigma per Charge
     478//
     479// Results of the different calibration methods:
     480// =============================================
     481//
     482// 9: Number of Photo-electrons obtained with the F-Factor method
     483// 10: Error on Number of Photo-electrons obtained with the F-Factor method
     484// 11: Mean conversion factor obtained with the F-Factor method
     485// 12: Error on the mean conversion factor obtained with the F-Factor method
     486// 13: Overall F-Factor of the readout obtained with the F-Factor method
     487// 14: Error on Overall F-Factor of the readout obtained with the F-Factor method
     488// 15: Number of Photons inside Plexiglass obtained with the Blind Pixel method
     489// 16: Error on Number of Photons inside Plexiglass obtained with the Blind Pixel method
     490// 17: Mean conversion factor obtained with the Blind Pixel method
     491// 18: Error on the mean conversion factor obtained with the Blind Pixel method
     492// 19: Overall F-Factor of the readout obtained with the Blind Pixel method
     493// 20: Error on Overall F-Factor of the readout obtained with the Blind Pixel method
     494// 21: Number of Photons outside Plexiglass obtained with the PIN Diode method
     495// 22: Error on Number of Photons outside Plexiglass obtained with the PIN Diode method
     496// 23: Mean conversion factor obtained with the PIN Diode method
     497// 24: Error on the mean conversion factor obtained with the PIN Diode method
     498// 25: Overall F-Factor of the readout obtained with the PIN Diode method
     499// 26: Error on Overall F-Factor of the readout obtained with the PIN Diode method
     500//
     501// Localized defects:
     502// ==================
     503//
     504// 27: Excluded Pixels
     505// 28: Pixels where the fit did not succeed --> results obtained only from the histograms
     506// 29: Pixels with succeeded fit, but apparently wrong results
     507// 30: Pixels with un-expected behavior in the fourier spectrum (e.g. oscillations)
     508//
     509// Other classifications of pixels:
     510// ================================
     511//
     512// 31: Pixels with saturated Hi-Gain
     513//
     514// Classification of validity of the calibrations:
     515// ===============================================
     516//
     517// 32: Pixels with valid calibration by the F-Factor-Method
     518// 33: Pixels with valid calibration by the Blind Pixel-Method
     519// 34: Pixels with valid calibration by the PIN Diode-Method
     520//
     521// Used Pedestals:
     522// ===============
     523//
     524// 35: Mean Pedestal over the entire range of signal extraction
     525// 36: Error on the Mean Pedestal over the entire range of signal extraction
     526// 37: Pedestal RMS over the entire range of signal extraction
     527// 38: Error on the Pedestal RMS over the entire range of signal extraction
     528//
     529// Calculated absolute arrival times (very low precision!):
     530// ========================================================
     531//
     532// 39: Absolute Arrival time of the signal
     533// 40: Error on the Absolute Arrival time of the signal
     534// 41: RMS of the Absolute Arrival time of the signal
     535// 42: Error on the RMS of the Absolute Arrival time of the signal
    400536//
    401537Bool_t MCalibrationCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
Note: See TracChangeset for help on using the changeset viewer.