ATLAS Offline Software
Loading...
Searching...
No Matches
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"
9namespace 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
std::string label() const
Definition NullBender.h:16
void bend(IParticle &) const
Definition NullBender.h:13