Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
QAPlotAxis.cxx
1/*
2 * QAPlotAxis.cxx
3 *
4 * Created on: 17 sie 2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#include "QAPlotAxis.h"
10
11namespace Hal {
12
13 QAPlotAxis::QAPlotAxis() : QAPlotAxis(0, 0, 0, 0) {}
14
15 QAPlotAxis::QAPlotAxis(Int_t flag, Int_t bins, Double_t min, Double_t max) : fFlag(flag), fNBins(bins), fMin(min), fMax(max) {}
16
17 QAPlotAxis::~QAPlotAxis() {}
18} /* namespace Hal */