#include "Plex/PlexStripEndId.h"#include "Plex/PlexPixelSpotId.h"#include "LeakChecker/Lea.h"#include <iosfwd>Go to the source code of this file.
Classes | |
| class | PlexSEIdAltLItem |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const PlexSEIdAltLItem &item) |
| Bool_t | operator== (const PlexSEIdAltLItem &lhs, const PlexSEIdAltLItem &rhs) |
| Bool_t | operator< (const PlexSEIdAltLItem &lhs, const PlexSEIdAltLItem &rhs) |
|
||||||||||||
|
Definition at line 103 of file PlexSEIdAltLItem.h. References PlexSEIdAltLItem::fWeight.
|
|
||||||||||||
|
Definition at line 24 of file PlexSEIdAltLItem.cxx. 00025 {
00026
00027 MsgFormat f10("%10.5f");
00028
00029 os << " " << item.fStripEndId
00030 << " " << item.fPixelSpotId
00031 << " wgt=" << f10(item.fWeight)
00032 << " pe=" << f10(item.fPE)
00033 << " lin=" << f10(item.fSigLin)
00034 << " corr=" << f10(item.fSigCorr)
00035 << " time=" << f10(item.fTime)
00036 << " " << endl;
00037
00038 return os;
00039 }
|
|
||||||||||||
|
Definition at line 97 of file PlexSEIdAltLItem.h. References PlexSEIdAltLItem::fStripEndId. 00099 {
00100 return lhs.fStripEndId == rhs.fStripEndId;
00101 }
|
1.3.9.1