BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
RecEmcDigit.cxx File Reference
#include <iostream>
#include "EmcRecEventModel/RecEmcDigit.h"

Go to the source code of this file.

Functions

ostream & operator<< (ostream &os, const RecEmcDigit &aDigit)
 

Function Documentation

◆ operator<<()

ostream & operator<< ( ostream &  os,
const RecEmcDigit aDigit 
)

Definition at line 120 of file RecEmcDigit.cxx.

121{
122 os<<"Digit: ";
123
124 os<<aDigit.CellId()<<", ";
125
126 os.width(12);
127 os.setf(ios::right);
128 os<<aDigit.ADC()<<", ";
129
130 os.width(12);
131 os.setf(ios::right);
132 os<<aDigit.TDC()<<endl;
133
134 return os;
135}
RecEmcADC ADC() const
Definition: RecEmcDigit.cxx:59
RecEmcTDC TDC() const
Definition: RecEmcDigit.cxx:64
RecEmcID CellId() const
Definition: RecEmcDigit.cxx:54