Skip to content
Snippets Groups Projects

port Derivation framework e gamma from 21.2 to master

40 files
+ 4020
1181
Compare changes
  • Side-by-side
  • Inline
Files
40
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
// EGCrackVetoCleaningTool.h, (c) ATLAS Detector software
///////////////////////////////////////////////////////////////////
#ifndef DERIVATIONFRAMEWORK_EGCRACKVETOCLEANINGTOOL_H
#define DERIVATIONFRAMEWORK_EGCRACKVETOCLEANINGTOOL_H
#include <string>
#include "AthenaBaseComps/AthAlgTool.h"
#include "DerivationFrameworkInterfaces/IAugmentationTool.h"
#include "GaudiKernel/ToolHandle.h"
namespace DerivationFramework {
class EGCrackVetoCleaningTool : public AthAlgTool, public IAugmentationTool {
public:
EGCrackVetoCleaningTool(const std::string& t, const std::string& n, const IInterface* p);
StatusCode initialize();
StatusCode finalize();
virtual StatusCode addBranches() const;
private:
std::string m_sgName;
std::string m_containerName;
};
}
#endif // DERIVATIONFRAMEWORK_EGCRACKVETOCLEANINGTOOL_H
Loading