Skip to content
Snippets Groups Projects
Commit b1558e5c authored by Eduardo Rodrigues's avatar Eduardo Rodrigues
Browse files

Added support for 2018 data.

parent 8cbfcc53
No related branches found
No related tags found
1 merge request!193Added support for 2018 data
......@@ -31,7 +31,7 @@ class DaVinci(LHCbConfigurableUser) :
"EvtMax" : -1 # Number of events to analyse
, "SkipEvents" : 0 # Number of events to skip at beginning for file
, "PrintFreq" : 1000 # The frequency at which to print event numbers
, "DataType" : '' # Data type, can be ['2008','2009','MC09','2010','2011','2012','2015','2016','2017'] Forwarded to PhysConf, AnalysisConf, DstConf and LHCbApp. MUST be set.
, "DataType" : '' # Data type, can be ['2008','2009','MC09','2010','2011','2012','2015','2016','2017','2018'] Forwarded to PhysConf, AnalysisConf, DstConf and LHCbApp. MUST be set.
, "Simulation" : False # set to True to use SimCond. Forwarded to PhysConf
, "DDDBtag" : "" # Tag for DDDB. Default as set in DDDBConf for DataType
, "CondDBtag" : "" # Tag for CondDB. Default as set in DDDBConf for DataType
......@@ -68,7 +68,7 @@ class DaVinci(LHCbConfigurableUser) :
"EvtMax" : """ Number of events to analyse """
, "SkipEvents" : """ Number of events to skip at beginning for file """
, "PrintFreq" : """ The frequency at which to print event numbers """
, "DataType" : """ Data type, can be ['2008','2009','MC09','2010','2011','2012','2015','2016','2017'] Forwarded to PhysConf, AnalysisConf, DstConf and LHCbApp """
, "DataType" : """ Data type, can be ['2008','2009','MC09','2010','2011','2012','2015','2016','2017','2018'] Forwarded to PhysConf, AnalysisConf, DstConf and LHCbApp """
, "Simulation" : """ set to True to use SimCond. Forwarded to PhysConf """
, "DDDBtag" : """ Tag for DDDB. Default as set in DDDBConf for DataType """
, "CondDBtag" : """ Tag for CondDB. Default as set in DDDBConf for DataType """
......@@ -106,7 +106,7 @@ class DaVinci(LHCbConfigurableUser) :
TurboConf ,
LHCbApp ]
__known_datatypes__ = [ "MC09", "2008", "2009", "2010", "2011", "2012", "2015", "2016", "2017", "Upgrade" ]
__known_datatypes__ = [ "MC09", "2008", "2009", "2010", "2011", "2012", "2015", "2016", "2017", "2018", "Upgrade" ]
__known_prod_types__ = [ "None", "Stripping" ]
## Known monitoring sequences run by default
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment