ATLAS Offline Software
IDefaultDecorator.h
Go to the documentation of this file.
1 // for text editors: this file is -*- C++ -*-
2 /*
3  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
4 */
5 
6 // Base class to provide a decorateWithDefaults method.
7 //
8 
9 #ifndef I_DEFAULT_DECORATOR_H
10 #define I_DEFAULT_DECORATOR_H
11 
12 #include "xAODBase/IParticle.h"
13 
15 {
16 public:
17 
19  virtual void decorateWithDefaults(const xAOD::IParticle& i_jet) const = 0;
20 
21 };
22 
23 
24 #endif
IParticle.h
xAOD::IParticle
Class providing the definition of the 4-vector interface.
Definition: Event/xAOD/xAODBase/xAODBase/IParticle.h:41
IDefaultDecorator::decorateWithDefaults
virtual void decorateWithDefaults(const xAOD::IParticle &i_jet) const =0
Method to decorate a jet with defaults.
IDefaultDecorator
Definition: IDefaultDecorator.h:15