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

Go to the source code of this file.

Classes

class  Contour< T >

Functions

template<typename T>
std::ostream & operator<< (std::ostream &s, const Contour< T > &_c)

Detailed Description

Author
mark sutton
Date
Mon 17 Aug 2015 19:11:54 CEST

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

Definition in file Contour.h.

Function Documentation

◆ operator<<()

template<typename T>
std::ostream & operator<< ( std::ostream & s,
const Contour< T > & _c )
inline

Definition at line 84 of file Contour.h.

84 {
85 s << "Contour : " << _c.name() << "\n";
86 for ( unsigned i=0 ; i<_c.size() ; i++ ) s << "\t d " << _c[i].first << "\n";
87 return s;
88}
std::string name() const
Definition Contour.h:58