Project
Loading...
Searching...
No Matches
Efficiency.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 O2_EFFICIENCY_STUDY_H
13#define O2_EFFICIENCY_STUDY_H
14
17
18namespace o2
19{
20namespace steer
21{
22class MCKinematicsReader;
23}
24namespace its
25{
26namespace study
27{
29o2::framework::DataProcessorSpec getEfficiencyStudy(mask_t srcTracksMask, mask_t srcClustersMask, bool useMC, std::shared_ptr<o2::steer::MCKinematicsReader> kineReader);
30
31float mEtaCuts[2] = {-1.0, 1.0};
32float mPtCuts[2] = {0, 10};
33
34// values obtained from the dca study for B=5
35// float dcaXY[3] = {-0.000326, -0.000217, -0.000187};
36// float dcaZ[3] = {0.000020, -0.000004, 0.000032};
37// float sigmaDcaXY[3] = {0.001375, 0.001279, 0.002681};
38// float sigmaDcaZ[3] = {0.002196, 0.002083, 0.004125};
39
40// values obtained from the dca study for B=0
41float dcaXY[3] = {-0.000328, -0.000213, -0.000203};
42float dcaZ[3] = {-0.000000543, -0.000013, 0.000001};
43float sigmaDcaXY[3] = {0.00109, 0.000895, 0.001520};
44float sigmaDcaZ[3] = {0.001366, 0.001149, 0.001868};
45
46int dcaCut = 8;
47
48float mDCACutsXY[3][2] = {{dcaXY[0] - dcaCut * sigmaDcaXY[0], dcaXY[0] + dcaCut* sigmaDcaXY[0]}, {dcaXY[1] - dcaCut * sigmaDcaXY[1], dcaXY[1] + dcaCut* sigmaDcaXY[1]}, {dcaXY[2] - dcaCut * sigmaDcaXY[2], dcaXY[2] + dcaCut* sigmaDcaXY[2]}}; // cuts at 8 sigma for each layer for xy. The values represent m-8sigma and m+8sigma
49float mDCACutsZ[3][2] = {{dcaZ[0] - dcaCut * sigmaDcaZ[0], dcaZ[0] + dcaCut* sigmaDcaZ[0]}, {dcaZ[1] - dcaCut * sigmaDcaZ[1], dcaZ[1] + dcaCut* sigmaDcaZ[1]}, {dcaZ[2] - dcaCut * sigmaDcaZ[2], dcaZ[2] + dcaCut* sigmaDcaZ[2]}};
50
52std::vector<int> mExcludedChipMC = {66, 67, 68, 75, 76, 77, 84, 85, 86, 93, 94, 95, 102, 103, 104, 265, 266, 267, 274, 275, 276, 283, 284, 285, 413, 414, 415, 422, 423, 424, 431, 432, 433};
53
54} // namespace study
55} // namespace its
56} // namespace o2
57#endif
Global index for barrel track: provides provenance (detectors combination), index in respective array...
o2::gpu::gpustd::bitset< 32 > mask_t
float mEtaCuts[2]
Definition Efficiency.h:31
float mPtCuts[2]
Definition Efficiency.h:32
float sigmaDcaXY[3]
Definition Efficiency.h:43
float dcaZ[3]
Definition Efficiency.h:42
float mDCACutsZ[3][2]
Definition Efficiency.h:49
o2::dataformats::GlobalTrackID::mask_t mask_t
float sigmaDcaZ[3]
Definition Efficiency.h:44
float mDCACutsXY[3][2]
Definition Efficiency.h:48
o2::framework::DataProcessorSpec getEfficiencyStudy(mask_t srcTracksMask, mask_t srcClustersMask, bool useMC, std::shared_ptr< o2::steer::MCKinematicsReader > kineReader)
std::vector< int > mExcludedChipMC
excluding bad chips in MC that are not present in data: to be checked based on the anchoring
Definition Efficiency.h:52
float dcaXY[3]
no cut for B=0
Definition Efficiency.h:41
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...