ATLAS Offline Software
Loading...
Searching...
No Matches
ClusterSplitProbability_p1.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef _ClusterSplitProbability_p1_H_
6#define _ClusterSplitProbability_p1_H_
7
8#include "Identifier/Identifier.h"
9
10namespace Trk {
12 {
14 ClusterSplitProbability_p1(unsigned int id, float probability1, float probability2, bool is_split)
15 : m_id(id),
16 m_splitPrpbability{probability1,probability2},
17 m_isSplit(is_split)
18 {}
19
20 unsigned int m_id;
23 };
24}
25#endif
Ensure that the ATLAS eigen extensions are properly loaded.
ClusterSplitProbability_p1(unsigned int id, float probability1, float probability2, bool is_split)