Project
Loading...
Searching...
No Matches
DcsCcdbObjects.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
15
16#ifndef ALICEO2_DCSCCDBOBJECTSTRD_H
17#define ALICEO2_DCSCCDBOBJECTSTRD_H
18
20#include "Rtypes.h"
21#include <array>
22
23namespace o2
24{
25namespace trd
26{
27
29 uint64_t firstTS{0}; // time stamp of the first point added
30 uint64_t lastTS{0}; // time stamp of the last point added
31 float minValue{0.f}; // min value seen by the TRD DCS processor
32 float maxValue{0.f}; // max value seen by the TRD DCS processor
33 float meanValue{0.f}; // mean value seen by the TRD DCS processor
34 int nPoints{0}; // number of values seen by the TRD DCS processor
35
36 void print() const;
37 void addPoint(float value, uint64_t ts);
38
40};
41
42} // namespace trd
43} // namespace o2
44
45#endif // ALICEO2_DCSCCDBOBJECTSTRD_H
Global TRD definitions and constants.
GLsizei const GLfloat * value
Definition glcorearb.h:819
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
void addPoint(float value, uint64_t ts)
ClassDefNV(TRDDCSMinMaxMeanInfo, 2)