diff --git a/common/python/nomadcore/smart_parser/SmartParserCommon.py b/common/python/nomadcore/smart_parser/SmartParserCommon.py index 604d9e5b19550d281355aedcca736e645d3d4a4b..2306446ea2cd9b27654d649d657e232dc3d521dc 100644 --- a/common/python/nomadcore/smart_parser/SmartParserCommon.py +++ b/common/python/nomadcore/smart_parser/SmartParserCommon.py @@ -161,6 +161,7 @@ class ParserBase(object): parserinfodef=None, recorderOn=False): self.PARSERTAG = parsertag self.metaStorage = mStore.Container('section_run') + self.metaStorageRestrict = mStore.Container('section_restricted_uri') exclude_dict = { 'section_run' : [ 'section_processor_info', @@ -176,6 +177,7 @@ class ParserBase(object): self.META_INFO_PATH ) self.metaStorage.build(jsonmetadata, 'section_run', exclude_dict) + self.metaStorageRestrict.build(jsonmetadata, 'section_restricted_uri', exclude_dict) self.re_program_name = re_program_name #set_Dictionaries(self) self.parserInfo = PARSER_INFO_DEFAULT.copy()