Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RSnapshotOptions.hxx
Go to the documentation of this file.
1// Author: Guilherme Amadio, Enrico Guiraud, Danilo Piparo CERN 2/2018
2
3/*************************************************************************
4 * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef ROOT_RSNAPSHOTOPTIONS
12#define ROOT_RSNAPSHOTOPTIONS
13
14#include <Compression.h>
15#include <string_view>
16#include <string>
17
18namespace ROOT {
19
20namespace RDF {
21/// A collection of options to steer the creation of the dataset on file
24 RSnapshotOptions() = default;
27 RSnapshotOptions(std::string_view mode, ECAlgo comprAlgo, int comprLevel, int autoFlush, int splitLevel, bool lazy,
28 bool overwriteIfExists = false, bool vector2RVec = true)
29 : fMode(mode),
30 fCompressionAlgorithm(comprAlgo),
31 fCompressionLevel{comprLevel},
32 fAutoFlush(autoFlush),
33 fSplitLevel(splitLevel),
34 fLazy(lazy),
35 fOverwriteIfExists(overwriteIfExists),
36 fVector2RVec(vector2RVec)
37 {
38 }
39 std::string fMode = "RECREATE"; ///< Mode of creation of output file
41 ROOT::RCompressionSetting::EAlgorithm::kZLIB; ///< Compression algorithm of output file
42 int fCompressionLevel = 1; ///< Compression level of output file
43 int fAutoFlush = 0; ///< AutoFlush value for output tree
44 int fSplitLevel = 99; ///< Split level of output tree
45 bool fLazy = false; ///< Do not start the event loop when Snapshot is called
46 bool fOverwriteIfExists = false; ///< If fMode is "UPDATE", overwrite object in output file if it already exists
47 bool fVector2RVec = true; ///< If set to true will convert std::vector columns to RVec when saving to disk
48};
49} // namespace RDF
50} // namespace ROOT
51
52#endif
Option_t Option_t TPoint TPoint const char mode
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
EValues
Note: this is only temporarily a struct and will become a enum class hence the name convention used.
Definition Compression.h:88
A collection of options to steer the creation of the dataset on file.
RSnapshotOptions(std::string_view mode, ECAlgo comprAlgo, int comprLevel, int autoFlush, int splitLevel, bool lazy, bool overwriteIfExists=false, bool vector2RVec=true)
int fAutoFlush
AutoFlush value for output tree.
std::string fMode
Mode of creation of output file.
bool fVector2RVec
If set to true will convert std::vector columns to RVec when saving to disk.
RSnapshotOptions(const RSnapshotOptions &)=default
ECAlgo fCompressionAlgorithm
Compression algorithm of output file.
int fSplitLevel
Split level of output tree.
RSnapshotOptions(RSnapshotOptions &&)=default
bool fLazy
Do not start the event loop when Snapshot is called.
int fCompressionLevel
Compression level of output file.
bool fOverwriteIfExists
If fMode is "UPDATE", overwrite object in output file if it already exists.