ATLAS Offline Software
Loading...
Searching...
No Matches
EMECPresamplerHVPayload.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 LARHV_EMECPRESAMPLERHVPAYLOAD_H
6#define LARHV_EMECPRESAMPLERHVPAYLOAD_H
7#include <iostream>
9 double voltage;
10 double current;
12};
13
14inline std::ostream & operator << (std::ostream & o, const EMECPresamplerHVPayload & payload) {
15 o << "HV Line No " << payload.hvLineNo << ' ' << payload.voltage << " volts; " << payload.current << " amps" << std::endl;
16 return o;
17}
18#endif
std::ostream & operator<<(std::ostream &o, const EMECPresamplerHVPayload &payload)