Project
Loading...
Searching...
No Matches
testStack.cxx
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#define BOOST_TEST_MODULE Test MCStack class
13#define BOOST_TEST_MAIN
14#define BOOST_TEST_DYN_LINK
15#include <boost/test/unit_test.hpp>
16#include "DetectorsBase/Stack.h"
17#include "TFile.h"
18#include "TMCProcess.h"
19
20using namespace o2;
21
22// unit tests on MC stack
24{
26 int a;
27 TMCProcess proc{kPPrimary};
28 // add a 2 primary particles
29 st.PushTrack(1, -1, 0, 0, 0., 0., 10., 5., 5., 5., 0.1, 0., 0., 0., proc, a, 1., 1);
30 st.PushTrack(1, -1, 0, 0, 0., 0., 10., 5., 5., 5., 0.1, 0., 0., 0., proc, a, 1., 1);
31 BOOST_CHECK(st.getPrimaries().size() == 2);
32
33 {
34 // serialize it
35 TFile f("StackOut.root", "RECREATE");
36 f.WriteObject(&st, "Stack");
37 f.Close();
38 }
39
40 {
41 o2::data::Stack* inst = nullptr;
42 TFile f("StackOut.root", "OPEN");
43 f.GetObject("Stack", inst);
44 BOOST_CHECK(inst->getPrimaries().size() == 2);
45 }
46}
Definition of the Stack class.
benchmark::State & st
void PushTrack(Int_t toBeDone, Int_t parentID, Int_t pdgCode, Double_t px, Double_t py, Double_t pz, Double_t e, Double_t vx, Double_t vy, Double_t vz, Double_t time, Double_t polx, Double_t poly, Double_t polz, TMCProcess proc, Int_t &ntr, Double_t weight, Int_t is) override
Definition Stack.cxx:176
const std::vector< TParticle > & getPrimaries() const
Definition Stack.h:187
GLdouble f
Definition glcorearb.h:310
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
BOOST_AUTO_TEST_CASE(FlatHisto)
BOOST_CHECK(tree)