Project
Loading...
Searching...
No Matches
PrimaryChunk.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
12#ifndef ALICEO2_DATA_PRIMARYCHUNK_H_
13#define ALICEO2_DATA_PRIMARYCHUNK_H_
14
15#include <cstring>
17
18namespace o2
19{
20namespace data
21{
22
23// structure describing an entity of work
24// processed by a simulation worker
26 float eventtime = 0.;
27 uint32_t eventID = 0; // which event ID
28 int32_t maxEvents = -1; // the number of events in this run (if known otherwise set to -1)
29 int32_t runID = 0; // the runID of this run
30 uint16_t part = 0; // which part of the eventID
31 uint16_t nparts = 0; // out of how many parts
32 uint64_t seed = 0; // seed for RNG
33 uint32_t index = 0;
34 int32_t npersistenttracks = -1; // the number of persistent tracks for this SubEvent (might be set to cache it)
35 int32_t nprimarytracks = -1; // the number of primary tracks for this SubEvent
36 // might add more fields (such as which process treated this chunk etc)
37
38 o2::dataformats::MCEventHeader mMCEventHeader; // associated FairMC header for vertex information
39
41};
42
43inline bool operator<(SubEventInfo const& a, SubEventInfo const& b)
44{
45 return a.eventID <= b.eventID && (a.part < b.part);
46}
47
48// Encapsulating primaries/tracks as well as the event info
49// to be processed by the simulation processors.
52 std::vector<TParticle> mParticles; // the particles for this chunk
54};
55} // namespace data
56} // namespace o2
57
58#endif
uint64_t eventtime
GLuint index
Definition glcorearb.h:781
GLboolean GLboolean GLboolean b
Definition glcorearb.h:1233
GLboolean * data
Definition glcorearb.h:298
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233
bool operator<(SubEventInfo const &a, SubEventInfo const &b)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
ClassDefNV(PrimaryChunk, 1)
SubEventInfo mSubEventInfo
std::vector< TParticle > mParticles
o2::dataformats::MCEventHeader mMCEventHeader
ClassDefNV(SubEventInfo, 2)