Project
Loading...
Searching...
No Matches
ChargePos.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 O2_GPU_CHARGE_POS_H
16#define O2_GPU_CHARGE_POS_H
17
18#include "clusterFinderDefs.h"
19
20namespace o2::gpu
21{
22
23#define INVALID_TIME_BIN (-GPUCF_PADDING_TIME - 1)
24
25struct ChargePos {
28
29 GPUdDefault() ChargePos() = default;
30
31 constexpr GPUhdi() ChargePos(tpccf::Row row, tpccf::Pad pad, tpccf::TPCFragmentTime t)
32 : gpad(tpcGlobalPadIdx(row, pad)), timePadded(t + GPUCF_PADDING_TIME)
33 {
34 }
35
36 GPUdi() ChargePos(const tpccf::GlobalPad& p, const tpccf::TPCFragmentTime& t) : gpad(p), timePadded(t) {}
37
38 GPUdi() ChargePos delta(const tpccf::Delta2& d) const
39 {
41 }
42
43 GPUdi() bool valid() const { return timePadded >= 0; }
44
45 GPUdi() tpccf::Row row() const { return gpad / TPC_PADS_PER_ROW_PADDED; }
46 GPUdi() tpccf::Pad pad() const { return gpad % TPC_PADS_PER_ROW_PADDED - GPUCF_PADDING_PAD; }
47 GPUdi() tpccf::TPCFragmentTime time() const { return timePadded - GPUCF_PADDING_TIME; }
48 GPUdi() tpccf::TPCFragmentTime globalTime() const { return timePadded; }
49
50 private:
51 // Maps the position of a pad given as row and index in that row to a unique
52 // index between 0 and TPC_NUM_OF_PADS.
53 static constexpr GPUdi() tpccf::GlobalPad tpcGlobalPadIdx(tpccf::Row row, tpccf::Pad pad)
54 {
56 }
57};
58
59inline constexpr ChargePos INVALID_CHARGE_POS{255, 255, INVALID_TIME_BIN};
60
61} // namespace o2::gpu
62
63#endif
#define INVALID_TIME_BIN
Definition ChargePos.h:23
int16_t time
Definition RawEventData.h:4
#define TPC_PADS_PER_ROW_PADDED
#define GPUCF_PADDING_PAD
#define GPUCF_PADDING_TIME
constexpr ChargePos INVALID_CHARGE_POS
Definition ChargePos.h:59
GPUdDefault() ChargePos()=default
tpccf::GlobalPad gpad
Definition ChargePos.h:26
GPUdi() ChargePos delta(const tpccf
Definition ChargePos.h:38
GPUdi() ChargePos(const tpccf
Definition ChargePos.h:36
constexpr GPUhdi() ChargePos(tpccf
Definition ChargePos.h:31
tpccf::TPCFragmentTime timePadded
Definition ChargePos.h:27
std::vector< int > row