Project
Loading...
Searching...
No Matches
RecPoint.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_FDD_RECPOINT_H
16#define ALICEO2_FDD_RECPOINT_H
17
24
25namespace o2
26{
27namespace fdd
28{
30
31 int mPMNumber = -1; // channel Id
32 int adcId = -1; // QTC chain
33 double mTime = -20000; // time in ps, 0 at the LHC clk center
34 double mChargeADC = -20000; // charge [channels]
35
36 ChannelDataFloat() = default;
37 ChannelDataFloat(int Channel, double Time, double Charge, int AdcId)
38 {
39 mPMNumber = Channel;
40 mTime = Time;
41 mChargeADC = Charge;
42 adcId = AdcId;
43 }
44
45 void print() const;
46 bool operator==(const ChannelDataFloat&) const = default;
47
49};
50
52{
53 public:
54 enum TimeTypeIndex : int { TimeA,
56 RecPoint() = default;
57 RecPoint(const std::array<int, 2>& collisiontime, int first, int ne,
59 : mCollisionTimePs(collisiontime)
60 {
61 mRef.setFirstEntry(first);
62 mRef.setEntries(ne);
63 mIntRecord = iRec;
64 mTriggers = triggers;
65 }
66 ~RecPoint() = default;
67
68 float getCollisionTime(TimeTypeIndex type) const { return mCollisionTimePs[type]; }
69 float getCollisionTimeA() const { return getCollisionTime(TimeA); }
70 float getCollisionTimeC() const { return getCollisionTime(TimeC); }
72 void setCollisionTime(Float_t time, TimeTypeIndex type) { mCollisionTimePs[type] = time; }
73
74 const o2::fdd::Triggers getTrigger() const { return mTriggers; }
75 o2::InteractionRecord getInteractionRecord() const { return mIntRecord; };
76 gsl::span<const ChannelDataFloat> getBunchChannelData(const gsl::span<const ChannelDataFloat> tfdata) const
77 {
78 // extract the span of channel data for this bunch from the whole TF data
79 return mRef.getEntries() ? gsl::span<const ChannelDataFloat>(tfdata).subspan(mRef.getFirstEntry(), mRef.getEntries()) : gsl::span<const ChannelDataFloat>();
80 }
81 short static constexpr sDummyCollissionTime = 32767;
82 int getFirstEntry() const { return mRef.getFirstEntry(); }
83 int getEntriesInCurrentBC() const { return mRef.getEntries(); }
84
85 void print() const;
86 bool operator==(const RecPoint&) const = default;
87
88 private:
90 o2::InteractionRecord mIntRecord;
91 o2::fdd::Triggers mTriggers; // pattern of triggers in this BC
92 std::array<int, 2> mCollisionTimePs = {sDummyCollissionTime, sDummyCollissionTime}; // in picoseconds
93
94 ClassDefNV(RecPoint, 3);
95};
96} // namespace fdd
97} // namespace o2
98#endif
Container class to store values of single FDD channel.
int16_t time
Definition RawEventData.h:4
Class to refer to the 1st entry and N elements of some group in the continuous container.
~RecPoint()=default
bool isValidTime(TimeTypeIndex type) const
Definition RecPoint.h:71
float getCollisionTimeA() const
Definition RecPoint.h:69
gsl::span< const ChannelDataFloat > getBunchChannelData(const gsl::span< const ChannelDataFloat > tfdata) const
Definition RecPoint.h:76
const o2::fdd::Triggers getTrigger() const
Definition RecPoint.h:74
void setCollisionTime(Float_t time, TimeTypeIndex type)
Definition RecPoint.h:72
float getCollisionTimeC() const
Definition RecPoint.h:70
o2::InteractionRecord getInteractionRecord() const
Definition RecPoint.h:75
float getCollisionTime(TimeTypeIndex type) const
Definition RecPoint.h:68
RecPoint()=default
void print() const
Definition RecPoint.cxx:27
int getEntriesInCurrentBC() const
Definition RecPoint.h:83
static short constexpr sDummyCollissionTime
Definition RecPoint.h:81
int getFirstEntry() const
Definition RecPoint.h:82
bool operator==(const RecPoint &) const =default
RecPoint(const std::array< int, 2 > &collisiontime, int first, int ne, o2::InteractionRecord iRec, o2::fdd::Triggers triggers)
Definition RecPoint.h:57
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
struct o2::upgrades_utils::@458 fdd
Collision labels.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
bool operator==(const ChannelDataFloat &) const =default
ClassDefNV(ChannelDataFloat, 1)
ChannelDataFloat(int Channel, double Time, double Charge, int AdcId)
Definition RecPoint.h:37