ATLAS Offline Software
NullBender.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 FPTRACKER_NULLBENDER_H
6 #define FPTRACKER_NULLBENDER_H
7 #include "IBender.h"
8 #include "Point.h"
9 namespace FPTracker{
10  class IParticle;
11  class NullBender: public IBender{
12  public:
13  void bend(IParticle&) const {
14  return;
15  }
16  std::string label() const {return "NullBender";}
17  };
18 }
19 #endif
FPTracker::NullBender::label
std::string label() const
Definition: NullBender.h:16
Point.h
FPTracker::IBender
Definition: FPTracker/FPTracker/IBender.h:13
IBender.h
FPTracker::NullBender::bend
void bend(IParticle &) const
Definition: NullBender.h:13
FPTracker
Definition: FPTracker/FPTracker/Beamline.h:12
FPTracker::IParticle
Definition: ForwardDetectors/FPTracker/FPTracker/IParticle.h:17
IParticle
Definition: Event/EventKernel/EventKernel/IParticle.h:43
FPTracker::NullBender
Definition: NullBender.h:11