ATLAS Offline Software
Loading...
Searching...
No Matches
TileLaserControl.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4/*
5 */
12
13
15#include <sstream>
16
17
18TileLaserControl::operator std::string() const
19{
20 std::ostringstream text;
21 text << "TileLaserControl: ";
22 text << "pumpDiodeTemp: " << m_pumpDiodeTemp << " ";
23 text << "diodeBoxTemp: " << m_diodeBoxTemp << " ";
24 text << "timeLastMeasP: " << m_timeLastMeasP << " ";
25 text << "gasFlux: " << m_gasFlux << " ";
26 text << "timeLastMeasF: " << m_timeLastMeasF << " ";
27 text << "humidity: " << m_humidity << " ";
28 text << "timeLastMeasH: " << m_timeLastMeasH << " ";
29 text << "lastPedMeas: " << m_lastPedMeas << " ";
30 text << "lastAlphaMeas: " << m_lastAlphaMeas;
31 return text.str();
32}