Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
RCreateFieldOptions.hxx
Go to the documentation of this file.
1/// \file ROOT/RCreateFieldOptions.hxx
2/// \author Giacomo Parolini <giacomo.parolini@cern.ch>
3/// \date 2024-12-17
4
5/*************************************************************************
6 * Copyright (C) 1995-2024, Rene Brun and Fons Rademakers. *
7 * All rights reserved. *
8 * *
9 * For the licensing terms see $ROOTSYS/LICENSE. *
10 * For the list of contributors see $ROOTSYS/README/CREDITS. *
11 *************************************************************************/
12
13#ifndef ROOT_RCreateFieldOptions
14#define ROOT_RCreateFieldOptions
15
16namespace ROOT {
17
19private:
20 /// If true, failing to create a field will return a RInvalidField instead of throwing an exception.
22 /// If true, fields with a user defined type that have no available dictionaries will be reconstructed
23 /// as record fields from the on-disk information; otherwise, they will cause an error.
25
26public:
29
32};
33
34} // namespace ROOT
35
36#endif
bool fEmulateUnknownTypes
If true, fields with a user defined type that have no available dictionaries will be reconstructed as...
bool fReturnInvalidOnError
If true, failing to create a field will return a RInvalidField instead of throwing an exception.