Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
CutFuncs.h
1/*
2 * CutFuncs.h
3 *
4 * Created on: 25 lis 2023
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#ifndef HAL_CUTS_CUTFUNCS_H_
10#define HAL_CUTS_CUTFUNCS_H_
11
12#include <vector>
13
14#include "Std.h"
15#include <RtypesCore.h>
16#include <TString.h>
17
18namespace Hal {
19 class Cut;
20 namespace Cuts {
26 std::vector<Int_t> GetCollectionsFlags(Int_t startCol, TString option);
34 Hal::Cut* MakeCutCopy(const Hal::Cut& cut, TString flag, Bool_t acceptNulls = kTRUE);
40 TString GetCutUpdateRatioName(Hal::ECutUpdate upd);
41 } // namespace Cuts
42
43} /* namespace Hal */
44
45#endif /* HAL_CUTS_CUTFUNCS_H_ */
Definition Cut.h:40