I3TriggerSet Class Reference
#include <I3.h>
List of all members.
Detailed Description
Simple wrapper aroung set<I3Trigger> to implement string stream operations.
- Author:
- Antonio Zea
Friends And Related Function Documentation
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const I3TriggerSet & |
t | |
|
) |
| | [friend] |
00047 {
00048 os << endl;
00049
00050 I3TriggerSet::iterator it;
00051 for (it = t.begin(); it != t.end(); it++) {
00052 os << *it << " in " << it->getInsertionTime() << "(" <<
00053 (simulation.simTime() - it->getInsertionTime()) << ")" << endl;
00054 }
00055 return os;
00056 }
The documentation for this class was generated from the following file: