Project
Loading...
Searching...
No Matches
ElmbMeasurement.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
12#ifndef ALICEO2_EMCAL_ELMBMEASUREMENT_H_
13#define ALICEO2_EMCAL_ELMBMEASUREMENT_H_
14
15#include <vector>
16#include <tuple>
17#include <Rtypes.h>
18
19#include "EMCALCalib/ElmbData.h"
20
21namespace o2
22{
23
24namespace emcal
25{
26
27//typedef std::tuple <int, float, float, float, float> Sensor_t; //{Npoints, mean, rms, min, max}
28
30{
31
32 public:
33 ElmbMeasurement() = default;
34 ~ElmbMeasurement() = default;
35
36 void init();
37 void process();
38 void reset();
39
40 void addMeasurement(int iPT, double val) { values[iPT].push_back(val); }
41
42 std::vector<Sensor_t> getData() { return mELMBdata; }
43 std::vector<std::vector<double>> getValues() { return values; }
44
45 private:
46 std::vector<std::vector<double>> values;
47 std::vector<float> values_prev;
48 std::vector<Sensor_t> mELMBdata; //
49
50 ClassDefNV(ElmbMeasurement, 1);
51};
52
53} // namespace emcal
54
55} // namespace o2
56#endif
void addMeasurement(int iPT, double val)
std::vector< std::vector< double > > getValues()
std::vector< Sensor_t > getData()
GLenum GLsizei GLsizei GLint * values
Definition glcorearb.h:1576
GLuint GLfloat * val
Definition glcorearb.h:1582
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...