ATLAS Offline Software
MuonSegmentCombiOverlapSummary.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef MUON_MUONSEGMENTCOMBIOVERLAPSUMMARY_H
6 #define MUON_MUONSEGMENTCOMBIOVERLAPSUMMARY_H
7 
8 #include <vector>
9 
10 namespace Muon {
11 
12  class MuonSegment;
13 
15  public:
16  std::vector<std::pair<MuonSegment*, MuonSegment*> > shared;
17  std::vector<MuonSegment*> uniqueFirst;
18  std::vector<MuonSegment*> uniqueSecond;
19 
21  std::vector<std::pair<MuonSegment*, MuonSegment*> > subsetFirst;
22 
24  std::vector<std::pair<MuonSegment*, MuonSegment*> > subsetSecond;
25  };
26 } // namespace Muon
27 
28 #endif
Muon::MuonSegmentCombiOverlapSummary
Definition: MuonSegmentCombiOverlapSummary.h:14
Muon::MuonSegmentCombiOverlapSummary::shared
std::vector< std::pair< MuonSegment *, MuonSegment * > > shared
segments shared between combies
Definition: MuonSegmentCombiOverlapSummary.h:16
Muon::MuonSegmentCombiOverlapSummary::uniqueFirst
std::vector< MuonSegment * > uniqueFirst
segments that are only part of the first combi
Definition: MuonSegmentCombiOverlapSummary.h:17
Muon
This class provides conversion from CSC RDO data to CSC Digits.
Definition: TrackSystemController.h:49
xAOD::MuonSegment
MuonSegment_v1 MuonSegment
Reference the current persistent version:
Definition: Event/xAOD/xAODMuon/xAODMuon/MuonSegment.h:13
Muon::MuonSegmentCombiOverlapSummary::subsetFirst
std::vector< std::pair< MuonSegment *, MuonSegment * > > subsetFirst
segments that are in both combis, but the one in the first is a subset of the second
Definition: MuonSegmentCombiOverlapSummary.h:21
Muon::MuonSegmentCombiOverlapSummary::subsetSecond
std::vector< std::pair< MuonSegment *, MuonSegment * > > subsetSecond
segments that are in both combis, but the second in the first is a subset of the first
Definition: MuonSegmentCombiOverlapSummary.h:24
Muon::MuonSegmentCombiOverlapSummary::uniqueSecond
std::vector< MuonSegment * > uniqueSecond
segments that are only part of the second combi
Definition: MuonSegmentCombiOverlapSummary.h:18