ATLAS Offline Software
Loading...
Searching...
No Matches
MuonDef.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7
8#ifndef COLUMNAR_MUON_MUON_DEF_H
9#define COLUMNAR_MUON_MUON_DEF_H
10
13
14namespace columnar
15{
16 struct MuonDef : RegularContainerId<xAOD::Muon,xAOD::MuonContainer>
17 {
18 static constexpr std::string_view idName = "muon";
19 };
20
24 template<typename CT,typename CM=ColumnarModeDefault> using MuonAccessor = AccessorTemplate<MuonDef,CT,ColumnAccessMode::input,CM>;
25 template<typename CT,typename CM=ColumnarModeDefault> using MuonDecorator = AccessorTemplate<MuonDef,CT,ColumnAccessMode::output,CM>;
26}
27
28#endif
the raw column accessor template class
a class representing a single object (electron, muons, etc.)
a class representing a continuous sequence of objects (a.k.a. a container)
a class representing a single optional object (electron, muons, etc.)
OptObjectId< MuonDef > OptMuonId
Definition MuonDef.h:23
ObjectId< MuonDef > MuonId
Definition MuonDef.h:22
ObjectRange< MuonDef > MuonRange
Definition MuonDef.h:21
AccessorTemplate< MuonDef, CT, ColumnAccessMode::input, CM > MuonAccessor
Definition MuonDef.h:24
AccessorTemplate< MuonDef, CT, ColumnAccessMode::output, CM > MuonDecorator
Definition MuonDef.h:25
static constexpr std::string_view idName
Definition MuonDef.h:18
Container id definitions for the columnar infrastructure.