Belle II Software development
ROIinfo.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8#pragma once
9
10#include <string>
11
15struct ROIinfo {
16 double sigmaSystU;
17 double sigmaSystV;
18 double numSigmaTotU;
19 double numSigmaTotV;
20 double maxWidthU;
21 double maxWidthV;
22 std::string gfTrackCandsColName;
24 std::string ROIListName;
25 std::string recoTracksListName;
26};
ROIinfo contains the parameters that can be changed by the user in the python script.
Definition: ROIinfo.h:15
double sigmaSystV
fixed width to add in quadrature to the extrapolation error and obtain the ROI V width
Definition: ROIinfo.h:17
double numSigmaTotU
number of sigma (stat+syst) determining the U width of the ROI
Definition: ROIinfo.h:18
double maxWidthU
maximum U width of the ROI
Definition: ROIinfo.h:20
std::string PXDInterceptListName
Intercept list name.
Definition: ROIinfo.h:23
double sigmaSystU
fixed width to add in quadrature to the extrapolation error and obtain the ROI U width
Definition: ROIinfo.h:16
std::string recoTracksListName
track list name
Definition: ROIinfo.h:25
double numSigmaTotV
number of sigma (stat+syst) determining the U width of the ROI
Definition: ROIinfo.h:19
std::string ROIListName
ROI list name.
Definition: ROIinfo.h:24
double maxWidthV
maximum U width of the ROI
Definition: ROIinfo.h:21
std::string gfTrackCandsColName
TrackCand list name.
Definition: ROIinfo.h:22