Project
Loading...
Searching...
No Matches
dEdxInfo.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
14
15#ifndef ALICEO2_DATAFORMATSTPC_DEDXINFO_H
16#define ALICEO2_DATAFORMATSTPC_DEDXINFO_H
17
18#include "GPUCommonRtypes.h"
19
20namespace o2
21{
22namespace tpc
23{
24struct dEdxInfo {
25 float dEdxTotIROC = 0.f;
26 float dEdxTotOROC1 = 0.f;
27 float dEdxTotOROC2 = 0.f;
28 float dEdxTotOROC3 = 0.f;
29 float dEdxTotTPC = 0.f;
30 float dEdxMaxIROC = 0.f;
31 float dEdxMaxOROC1 = 0.f;
32 float dEdxMaxOROC2 = 0.f;
33 float dEdxMaxOROC3 = 0.f;
34 float dEdxMaxTPC = 0.f;
35 unsigned char NHitsIROC = 0;
36 unsigned char NHitsSubThresholdIROC = 0;
37 unsigned char NHitsOROC1 = 0;
38 unsigned char NHitsSubThresholdOROC1 = 0;
39 unsigned char NHitsOROC2 = 0;
40 unsigned char NHitsSubThresholdOROC2 = 0;
41 unsigned char NHitsOROC3 = 0;
42 unsigned char NHitsSubThresholdOROC3 = 0;
44};
45} // namespace tpc
46} // namespace o2
47
48#endif
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
unsigned char NHitsOROC1
Definition dEdxInfo.h:37
unsigned char NHitsSubThresholdIROC
Definition dEdxInfo.h:36
unsigned char NHitsSubThresholdOROC3
Definition dEdxInfo.h:42
unsigned char NHitsOROC2
Definition dEdxInfo.h:39
unsigned char NHitsSubThresholdOROC2
Definition dEdxInfo.h:40
ClassDefNV(dEdxInfo, 1)
unsigned char NHitsIROC
Definition dEdxInfo.h:35
unsigned char NHitsOROC3
Definition dEdxInfo.h:41
unsigned char NHitsSubThresholdOROC1
Definition dEdxInfo.h:38