ATLAS Offline Software
Loading...
Searching...
No Matches
TIDAVertex.h File Reference
#include <iostream>
#include <vector>
#include "TrigInDetAnalysis/Track.h"
Include dependency graph for TIDAVertex.h:

Go to the source code of this file.

Classes

class  TIDA::Vertex

Namespaces

namespace  TIDA
 Test for xAOD.

Functions

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

Detailed Description

Author
emil haines, mark sutton
Date
Wed 28 Jul 2021

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

Definition in file TIDAVertex.h.

Function Documentation

◆ operator<<()

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

Definition at line 98 of file TIDAVertex.h.

98 {
99 return s << "[ x=" << t.position()[0] << " +- " << t.error()[0]
100 << "\ty=" << t.position()[1] << " +- " << t.error()[1]
101 << "\tz=" << t.position()[2] << " +- " << t.error()[2]
102 << ";\tchi2=" << t.chi2() << "/" << t.ndof()
103 << "\tNtracks=" << t.Ntracks() << "\t]";
104}