ATLAS Offline Software
Loading...
Searching...
No Matches
TIDAEvent.h File Reference

Basic event class to contain a vector of chains for trigger analysis. More...

#include <iostream>
#include <vector>
#include <string>
#include "TrigInDetAnalysis/TIDAChain.h"
#include "TrigInDetAnalysis/TIDAVertex.h"
#include "TObject.h"
Include dependency graph for TIDAEvent.h:

Go to the source code of this file.

Classes

class  TIDA::Event

Namespaces

namespace  TIDA
 Test for xAOD.

Functions

std::ostream & operator<< (std::ostream &s, const TIDA::Event &t)

Detailed Description

Basic event class to contain a vector of chains for trigger analysis.

Author
mark sutton
Date
Mon 1 Feb 2010 11:43:51 GMT

Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration

Definition in file TIDAEvent.h.

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & s,
const TIDA::Event & t )
inline

Definition at line 129 of file TIDAEvent.h.

129 {
130 s << "Event run: " << t.run_number()
131 << "\tevent: " << t.event_number()
132 << "\tlb: " << t.lumi_block()
133 << "\tbc: " << t.bunch_crossing_id()
134 << "\ttime: " << t.time_stamp()
135 << "\tmu: " << t.mu();
136 for ( unsigned i=0 ; i<t.vertices().size() ; i++ ) s << "\n" << t.vertices()[i];
137 for ( unsigned i=0 ; i<t.chains().size() ; i++ ) s << "\n" << t.chains()[i];
138 return s;
139}