#include <RawDigiDigitMixIn.h>
Inheritance diagram for RawDigiDigitMixIn:

Public Member Functions | |
| RawDigiDigitMixIn () | |
| RawDigiDigitMixIn (const Int_t *&p, const RawCrateStatus *cstat) | |
| virtual | ~RawDigiDigitMixIn () |
| Int_t | GetDigiSignalIndex (void) const |
Protected Member Functions | |
| void | ProcessDigiWords (const Int_t *&p, const RawCrateStatus *cstat) |
| virtual std::ostream & | FormatToOStream (std::ostream &os, Option_t *option="") const |
Protected Attributes | |
| Int_t | fDigiSignalIndex |
|
|
Definition at line 21 of file RawDigiDigitMixIn.cxx. 00022 : fDigiSignalIndex(-1) 00023 { 00024 // Default constructor 00025 }
|
|
||||||||||||
|
Definition at line 28 of file RawDigiDigitMixIn.cxx. References ProcessDigiWords(). 00029 {
00030 ProcessDigiWords(p,cstat);
00031 }
|
|
|
Definition at line 50 of file RawDigiDigitMixIn.cxx. 00051 {
00052 }
|
|
||||||||||||
|
Reimplemented in RawQieDigiDigit, and RawVaDigiDigit. Definition at line 55 of file RawDigiDigitMixIn.cxx. Referenced by RawVaDigiDigit::FormatToOStream(), and RawQieDigiDigit::FormatToOStream(). 00057 {
00058 os << " Signal:" << fDigiSignalIndex;
00059 return os;
00060 }
|
|
|
Definition at line 34 of file RawDigiDigitMixIn.h. Referenced by Truthifier::GetSignal(). 00034 { return fDigiSignalIndex; }
|
|
||||||||||||
|
Definition at line 34 of file RawDigiDigitMixIn.cxx. References fDigiSignalIndex. Referenced by RawDigiDigitMixIn(), RawQieDigiDigit::RawQieDigiDigit(), and RawVaDigiDigit::RawVaDigiDigit(). 00036 {
00037
00038 fDigiSignalIndex = p[0];
00039
00040 #ifdef RWHDEBUG
00041 cout << "RawDigiDigitMixIn started with p= " << p << endl;
00042 #endif
00043
00044 // processing eat up 1 extra word
00045 p += 1;
00046
00047 }
|
|
|
Definition at line 42 of file RawDigiDigitMixIn.h. Referenced by ProcessDigiWords(). |
1.3.9.1