Nanga Parbat 1.1.0
A TMD fitting framework
zcut.h
Go to the documentation of this file.
1//
2// Authors: Valerio Bertone: valerio.bertone@cern.ch
3//
4
5#pragma once
6
7#include "NangaParbat/cut.h"
8
9namespace NangaParbat
10{
15 class ZCut: public Cut
16 {
17 public:
24 ZCut(DataHandler const& dataset, double const& zmin, double const& zmax);
25
30 void EnforceCut();
31 };
32}
Purely virtual mother class that implements the main feautures of a cut function on a given dataset....
Definition: cut.h:20
The "DataHandler" class provides a common interface to all datasets. It provides methods to get kinem...
Definition: datahandler.h:23
Derivation of the class Cut to impose cut on the variable "z".
Definition: zcut.h:16
void EnforceCut()
Purely virtual function to be used implemented in the derived class to eforce the cut.
ZCut(DataHandler const &dataset, double const &zmin, double const &zmax)
The "ZCut" constructor.
Definition: bstar.h:12