ATLAS Offline Software
Loading...
Searching...
No Matches
Reconstruction/tauEvent/tauEvent/TauJetContainer.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
5//-----------------------------------------------------------------------------
6// file: TauContainer.h
7// package: Reconstruction/tauEvent
8// authors: Lukasz Janyst
9// date: 2007-01-24
10// description: Container for Taus
11//-----------------------------------------------------------------------------
12
13#ifndef TAU_CONTAINER_ANALYSIS_H
14#define TAU_CONTAINER_ANALYSIS_H
15
18#include "tauEvent/TauJet.h"
19
21// Needed for constructing the mirror container hierarchy
22// This tells StoreGate that DV<Analysis::TauJet> derives from DV<IParticle>
24
25namespace Analysis
26{
27 //-------------------------------------------------------------------------
28 // this must be new class for persistency reasons
29 //-------------------------------------------------------------------------
30 class TauJetContainer: public DataVector<TauJet>
31 {
32 public:
35
36 //-----------------------------------------------------------------
38 //-----------------------------------------------------------------
39 void setROIAuthor( const std::string& RoiAuthor )
40 {
41 m_ROIauthor = RoiAuthor;
42 }
43
44 //-----------------------------------------------------------------
46 //-----------------------------------------------------------------
47 const std::string& getROIAuthor() const
48 {
49 return m_ROIauthor;
50 }
51
52 private:
53 std::string m_ROIauthor;
54 };
55}
56
58
60
61#endif // TAU_CONTAINER_ANALYSIS
#define SG_BASE(D, B)
Declare that class D derives from class B.
macros to associate a CLID to a type
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
An STL vector of pointers that by default owns its pointed-to elements.
#define DATAVECTOR_BASE(T, BASE)
Declare base class info to DataVector.
Definition DataVector.h:649
Declaration of tau jet transient class.
void setROIAuthor(const std::string &RoiAuthor)
Set ROI ID and author (trigger purposes)
const std::string & getROIAuthor() const
Retrieve ROI ID and author (trigger purposes)
TauJetContainer(SG::OwnershipPolicy own=SG::OWN_ELEMENTS)
Object for taus common for ESD and AOD.
Derived DataVector<T>.
Definition DataVector.h:795
DataVector(SG::OwnershipPolicy ownPolicy=SG::OWN_ELEMENTS, SG::IndexTrackingPolicy trackIndices=SG::DEFAULT_TRACK_INDICES)
The namespace of all packages in PhysicsAnalysis/JetTagging.
OwnershipPolicy
@ OWN_ELEMENTS
this data object owns its elements