Skip to content
Snippets Groups Projects
Commit 2c0c7819 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

RegSelLUT: remove unused IRegionIDLUT_Creator

parent e21a87dd
No related branches found
No related tags found
17 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76725ZdcNtuple: Fix cppcheck warning.,!76611L1CaloFEXByteStream: Fix out-of-bounds array accesses.,!76475Punchthrough AF3 implementation in FastG4,!76474Punchthrough AF3 implementation in FastG4,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method,!75729New implementation of ZDC nonlinear FADC correction.,!75703Draft: Update to HI han config for HLT jets,!75184Draft: Update file heavyions_run.config,!74885RegSelLUT: remove unused IRegionIDLUT_Creator
// emacs: this is -*- c++ -*-
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: IRegionIDLUT_Creator.h,v 1.1 2008-05-15 21:24:17 sutt Exp $
#ifndef IREGIONIDLUT_CREATOR_H
#define IREGIONIDLUT_CREATOR_H
#include "GaudiKernel/IAlgTool.h"
#include "RegSelLUT/RegSelSiLUT.h"
/// Interface class to create RegionSelector look up table
/// for extent of elements for new RegSelSiLUT classes.
/// FIXME: would be better done as a template rather than have
/// two very similar classes, but I couldn't get it to
/// work. maybe it was somthing to do with the InterfaceID.
/// hmmm
static const InterfaceID IID_IRegionIDLUT_CreatorID ("IRegionIDLUT_CreatorID",1,0);
class IRegionIDLUT_Creator : virtual public IAlgTool
{
public:
virtual ~IRegionIDLUT_Creator() {}
static const InterfaceID& interfaceID() { return IID_IRegionIDLUT_CreatorID; } /// The AlgTool InterfaceID
virtual StatusCode initialize()=0; /// standard AlgTool method
virtual StatusCode finalize()=0; /// standard AlgTool method
/// abstract base method for retrieving the table
virtual RegSelSiLUT* getLUT() = 0;
};
#endif // IREGIONIDLUT_CREATOR_H
......@@ -25,7 +25,6 @@
#include "MuonSimData/MuonSimData.h"
#include "RegSelLUT/RegSelSiLUT.h"
#include "RegSelLUT/IRegionIDLUT_Creator.h"
#include "IRegionSelector/IRegSelLUTCondData.h"
#include "TrigT1NSWSimTools/IStripSegmentTool.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment