forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To make it compile with QC master, without my changes
- Loading branch information
1 parent
d983327
commit a9e5335
Showing
6 changed files
with
1,534 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
Detectors/GlobalTracking/include/GlobalTracking/ITSTPCMatchingQCParams.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright 2019-2020 CERN and copyright holders of ALICE O2. | ||
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. | ||
// All rights not expressly granted are reserved. | ||
// | ||
// This software is distributed under the terms of the GNU General Public | ||
// License v3 (GPL Version 3), copied verbatim in the file "COPYING". | ||
// | ||
// In applying this license CERN does not waive the privileges and immunities | ||
// granted to it by virtue of its status as an Intergovernmental Organization | ||
// or submit itself to any jurisdiction. | ||
|
||
/// \author [email protected] | ||
|
||
#ifndef ALICEO2_ITSTPCMATCHINGQC_PARAMS_H | ||
#define ALICEO2_ITSTPCMATCHINGQC_PARAMS_H | ||
|
||
#include "CommonUtils/ConfigurableParam.h" | ||
#include "CommonUtils/ConfigurableParamHelper.h" | ||
|
||
namespace o2 | ||
{ | ||
namespace globaltracking | ||
{ | ||
|
||
// There are configurable params for TPC-ITS matching | ||
struct ITSTPCMatchingQCParams : public o2::conf::ConfigurableParamHelper<ITSTPCMatchingQCParams> { | ||
|
||
float minPtCut = 0.1f; | ||
float etaCut = 1.4f; | ||
int32_t minNTPCClustersCut = 60; | ||
float minDCACut = 100.f; | ||
float minDCACutY = 10.f; | ||
|
||
O2ParamDef(ITSTPCMatchingQCParams, "ITSTPCMatchingQC"); | ||
}; | ||
|
||
} // namespace globaltracking | ||
} // end namespace o2 | ||
|
||
#endif |
Oops, something went wrong.