#ifndef TECALDigit_hxx_seen #define TECALDigit_hxx_seen #include namespace COMET { class IECALDigit; } /// Digit for ECAL based detectors. This holds the actual digitization data /// for a ECAL channel. class COMET::IECALDigit : public COMET::IWaveformDigit { public: IECALDigit (); virtual ~IECALDigit(); /// Construct a digit for a particular channel and cycle number. IECALDigit(const COMET::IChannelId& chanId, COMET::ITrigger* trigger, const Int_t firstTimeTick, const TWfADC& wfAdcs); /// Print the digit information. virtual void ls(Option_t* opt = "") const; ClassDef(IECALDigit,1); }; #endif