CGEM BOSS 6.6.5.g
BESIII Offline Software System
Loading...
Searching...
No Matches
RecEmcDigit.h File Reference
#include <map>
#include "EmcRecEventModel/RecEmcDataType.h"

Go to the source code of this file.

Classes

class  RecEmcDigit
 

Typedefs

typedef map< RecEmcID, RecEmcDigit, less< RecEmcID > > RecEmcDigitMap
 

Functions

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

Typedef Documentation

◆ RecEmcDigitMap

Definition at line 59 of file RecEmcDigit.h.

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