BmnRoot
Loading...
Searching...
No Matches
BmnSsdDigi.cxx
Go to the documentation of this file.
1
8#include "BmnSsdDigi.h"
9#include <sstream>
10#include "BmnSsdAddress.h"
11
12using std::string;
13using std::stringstream;
14
15// --- String output
16string BmnSsdDigi::ToString() const {
17 stringstream ss;
18 ss << "SsdDigi: address " << fAddress << " | channel " << fChannel
19 << " | charge " << fCharge << " | time " << fTime;
20 return ss.str();
21}
virtual std::string ToString() const