#ifndef TStrawTrkDigit_hxx_seen #define TStrawTrkDigit_hxx_seen #include namespace COMET { class IStrawTrkDigit; } /// Digit for StrawTrk based detectors. This holds the actual digitization data /// for a StrawTrk channel. class COMET::IStrawTrkDigit : public COMET::IWaveformDigit { public: IStrawTrkDigit (); virtual ~IStrawTrkDigit(); /// Construct a digit for a particular channel and cycle number. IStrawTrkDigit(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(IStrawTrkDigit,1); }; #endif