Project
Loading...
Searching...
No Matches
EMCALChannelData.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
20
21#ifndef ALICEO2_EMCALCHANNELDATA_H
22#define ALICEO2_EMCALCHANNELDATA_H
23
24#include "Rtypes.h"
25
26namespace o2
27{
28namespace dataformats
29{
31{
32 public:
33 EMCALChannelData(int cellID, int timestamp, int flags = 0, int events) : mEMCALCellID(cellID), mTimestamp(timestamp), mFlags(flags){};
34 EMCALChannelData() = default;
35 ~EMCALChannelData() = default;
36
37 void setEMCALCellID(int index) { mEMCALCellID = index; }
38 int getEMCALCellID() const { return mEMCALCellID; }
39
40 void setTimestamp(int ts) { mTimestamp = ts; }
41 int getTimestamp() const { return mTimestamp; }
42
43 void setFlags(int flags) { mFlags = flags; }
44 float getFlags() const { return mFlags; }
45
46 private:
47 int mEMCALCellID;
48 int mTimestamp;
49 unsigned char mFlags;
50
51 ClassDefNV(EMCALChannelData, 1);
52};
53} // namespace dataformats
54} // namespace o2
55#endif
EMCALChannelData(int cellID, int timestamp, int flags=0, int events)
GLuint index
Definition glcorearb.h:781
GLbitfield flags
Definition glcorearb.h:1570
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...