#include "Conventions/Detector.h"#include "Conventions/ElecType.h"#include <iosfwd>Go to the source code of this file.
Classes | |
| class | RawChannelId |
Defines | |
| #define | RAWCHANNELID_NEW_CTOR 1 |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const RawChannelId &rcid) |
| Bool_t | operator< (const RawChannelId &lhs, const RawChannelId &rhs) |
| Bool_t | operator== (const RawChannelId &lhs, const RawChannelId &rhs) |
| Bool_t | operator!= (const RawChannelId &lhs, const RawChannelId &rhs) |
Variables | |
| const UInt_t | defaultRawChannelId = 0 |
|
|
Definition at line 31 of file RawChannelId.h. |
|
||||||||||||
|
Definition at line 169 of file RawChannelId.h. References RawChannelId::ConvertToVersion2(), and RawChannelId::fEncoded. 00170 {
00171 lhs.ConvertToVersion2(); rhs.ConvertToVersion2();
00172 return lhs.fEncoded != rhs.fEncoded;
00173 }
|
|
||||||||||||
|
Definition at line 157 of file RawChannelId.h. References RawChannelId::ConvertToVersion2(), and RawChannelId::fEncoded. 00158 {
00159 lhs.ConvertToVersion2(); rhs.ConvertToVersion2();
00160 return lhs.fEncoded < rhs.fEncoded;
00161 }
|
|
||||||||||||
|
Definition at line 114 of file RawChannelId.cxx. 00115 { return rcid.FormatToOStream(os); }
|
|
||||||||||||
|
Definition at line 163 of file RawChannelId.h. References RawChannelId::ConvertToVersion2(), and RawChannelId::fEncoded. 00164 {
00165 lhs.ConvertToVersion2(); rhs.ConvertToVersion2();
00166 return lhs.fEncoded == rhs.fEncoded;
00167 }
|
|
|
Definition at line 175 of file RawChannelId.h. Referenced by RawChannelId::IsNull(), and RawChannelId::RawChannelId(). |
1.3.9.1