ATLAS Offline Software
Calorimeter/CaloInterface/CaloInterface/ICaloCellSelector.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef CALOINTERFACE_ICALOCELLSELECTOR_H
6 #define CALOINTERFACE_ICALOCELLSELECTOR_H
7 
8 class CaloCell;
9 
11 {
12  public:
13 
14  virtual ~ICaloCellSelector() { };
15 
16  virtual bool accept(const CaloCell* aCell) const = 0;
17 };
18 #endif
ICaloCellSelector::accept
virtual bool accept(const CaloCell *aCell) const =0
ICaloCellSelector::~ICaloCellSelector
virtual ~ICaloCellSelector()
Definition: Calorimeter/CaloInterface/CaloInterface/ICaloCellSelector.h:14
CaloCell
Data object for each calorimeter readout cell.
Definition: CaloCell.h:57
ICaloCellSelector
Definition: Calorimeter/CaloInterface/CaloInterface/ICaloCellSelector.h:11