EICrecon
JANA based reconstruction for the EPIC detector
Loading...
Searching...
No Matches
PrimaryVerticesConfig.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2// Copyright (C) 2024 Xin Dong
3
4#pragma once
5
6#include <string>
7#include <DD4hep/DD4hepUnits.h>
8
9namespace eicrecon {
10
12
13 // For now these are wide open
14 // In the future the cut should depend
15 // on the generator settings
16 float maxVr = 50.0; // mm
17 float maxVz = 500.0; // mm
18 float maxChi2 = 10000.0; //
19 int minNtrk = 1; // >=
20 int maxNtrk = 1000000; // <=
21};
22
23} // namespace eicrecon
-client
Definition CalorimeterClusterRecoCoG.cc:37
Definition PrimaryVerticesConfig.h:11
int maxNtrk
Definition PrimaryVerticesConfig.h:20
float maxVr
Definition PrimaryVerticesConfig.h:16
int minNtrk
Definition PrimaryVerticesConfig.h:19
float maxChi2
Definition PrimaryVerticesConfig.h:18
float maxVz
Definition PrimaryVerticesConfig.h:17