Friends

I3TriggerSet Class Reference

Simple wrapper aroung set<I3Trigger> to implement string stream operations. More...

#include <I3.h>

List of all members.

Friends

std::ostream & operator<< (std::ostream &os, const I3TriggerSet &t)

Detailed Description

Simple wrapper aroung set<I3Trigger> to implement string stream operations.

Definition at line 35 of file I3.h.


Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const I3TriggerSet t 
) [friend]

Definition at line 49 of file I3.cc.

{
    os << endl;

    I3TriggerSet::iterator it;
    for (it = t.begin(); it != t.end(); it++) {
        os << *it << " in " << it->getInsertionTime() << "(" <<
        (simTime() - it->getInsertionTime()) << ")" << endl;
    }
    return os;
}


The documentation for this class was generated from the following file: