ATLAS Offline Software
Loading...
Searching...
No Matches
JetBase.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGHLTJETHYO_JETBASE_H
6#define TRIGHLTJETHYO_JETBASE_H
7
8#include "./IJet.h"
9#include <sstream>
10
11namespace HypoJet{
12 class JetBase: virtual public HypoJet::IJet {
13 std::string toString() const {
14 std::stringstream ss;
15 ss << "Jet- pt: " << pt() << " eta: "
16 << eta() << " phi: " << phi() << '\n';
17 return ss.str();
18 }
19 };
20}
21#endif
static Double_t ss
virtual double eta() const =0
virtual double pt() const =0
virtual double phi() const =0
std::string toString() const
Definition JetBase.h:13