Project
Loading...
Searching...
No Matches
GPUTrackingInputProvider.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 GPUTRACKINGINPUTPROVIDER_H
16#define GPUTRACKINGINPUTPROVIDER_H
17
18#include "GPUDef.h"
19#include "GPUProcessor.h"
20
21namespace o2::tpc
22{
23struct ClusterNative;
24struct ClusterNativeAccess;
25} // namespace o2::tpc
26
27namespace o2::gpu
28{
29
30struct GPUTrackingInOutZS;
31struct GPUTPCClusterOccupancyMapBin;
32class GPUTRDTrackletWord;
33class GPUTRDSpacePoint;
34
36{
37 public:
38#ifndef GPUCA_GPUCODE
42
43 void* SetPointersTPCOccupancyMap(void* mem);
44 void* SetPointersInputZS(void* mem);
48 void* SetPointersInputTRD(void* mem);
49 void* SetPointersErrorCodes(void* mem);
50#endif
51
52 uint16_t mResourceZS = -1;
56 uint16_t mResourceErrorCodes = -1;
57 uint16_t mResourceTRD = -1;
58 uint16_t mResourceOccupancyMap = -1;
59
60 bool mHoldTPCZS = false;
64 uint32_t mNClusterNative = 0;
65
67 uint32_t* mPzsSizes = nullptr;
68 void** mPzsPtrs = nullptr;
69
70 uint32_t mNTRDTracklets = 0;
71 bool mDoSpacepoints = false;
72 uint32_t mNTRDTriggerRecords = 0;
75 float* mTRDTriggerTimes = nullptr;
76 int32_t* mTRDTrackletIdxFirst = nullptr;
77 uint8_t* mTRDTrigRecMask = nullptr;
78
82
83 uint32_t* mTPCClusterOccupancyMap = nullptr;
84
85 uint32_t* mErrorCodes = nullptr;
86};
87
88} // namespace o2::gpu
89
90#endif
o2::tpc::ClusterNativeAccess * mPclusterNativeAccess
void SetMaxData(const GPUTrackingInOutPointers &io)
o2::tpc::ClusterNative * mPclusterNativeOutput
o2::tpc::ClusterNative * mPclusterNativeBuffer
Global TPC definitions and constants.
Definition SimTraits.h:167