Nanga Parbat 1.1.0
A TMD fitting framework
qcut.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 QCut: public Cut
16 {
17 public:
24 QCut(DataHandler const& dataset, double const& Qmin, double const& Qmax);
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 "Q".
Definition: qcut.h:16
void EnforceCut()
Purely virtual function to be used implemented in the derived class to eforce the cut.
QCut(DataHandler const &dataset, double const &Qmin, double const &Qmax)
The "QCut" constructor.
Definition: bstar.h:12