// $Id$ /************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * * * * 7/1- 2007 * * Author: Per Thomas Hille * * code modified to include the two differnt gains of each detection * * channel and also to include the Pedestals loaded into the ALTRO * * registers for basline subtraction and zero supression * * * * * **************************************************************************/ /////////////////////////////////////////////////////////////////////////////// // // // class for PHOS EmCal calibration // // // /////////////////////////////////////////////////////////////////////////////// #include "AliHLTPHOSEmcCalibData.h" ClassImp(AliHLTPHOSEmcCalibData) //________________________________________________________________ AliHLTPHOSEmcCalibData::AliHLTPHOSEmcCalibData(): TNamed() { // Default constructor Reset(); } //________________________________________________________________ AliHLTPHOSEmcCalibData::AliHLTPHOSEmcCalibData(const char* name) { // Constructor TString namst = "Calib_"; namst += name; SetName(namst.Data()); SetTitle(namst.Data()); Reset(); } //________________________________________________________________ AliHLTPHOSEmcCalibData::AliHLTPHOSEmcCalibData(const AliHLTPHOSEmcCalibData& calibda) : TNamed(calibda) { // copy constructor SetName(calibda.GetName()); SetTitle(calibda.GetName()); // for(Int_t gain = 0; gain < N_GAINS; gain ++){ for(Int_t module=0; module