ATLAS Offline Software
Loading...
Searching...
No Matches
TrigHypothesis/TrigHLTJetHypo/src/Tracer.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGJETHYPO_TRACER_H
6#define TRIGJETHYPO_TRACER_H
7
8#include <iostream>
9class Tracer {
10public:
11 Tracer(const std::string& msg): m_msg(msg){
12 std::cerr<< "+ " << m_msg << '\n';}
14 std::cerr << "- " <<m_msg << '\n';
15 }
16private:
17 std::string m_msg;
18};
19
20#endif
Tracer(const std::string &msg)
MsgStream & msg
Definition testRead.cxx:32