#include <I3.h>
Friends | |
| std::ostream & | operator<< (std::ostream &os, const I3TriggerSet &t) |
Definition at line 35 of file I3.h.
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const I3TriggerSet & | t | |||
| ) | [friend] |
Definition at line 49 of file I3.cc.
00050 { 00051 os << endl; 00052 00053 I3TriggerSet::iterator it; 00054 for (it = t.begin(); it != t.end(); it++) { 00055 os << *it << " in " << it->getInsertionTime() << "(" << 00056 (simTime() - it->getInsertionTime()) << ")" << endl; 00057 } 00058 return os; 00059 }
1.5.8