|
||||
File indexing completed on 2025-01-30 10:30:21
0001 // SPDX-License-Identifier: LGPL-3.0-or-later 0002 // Copyright (C) 2022 Whitney Armstrong, Wouter Deconinck 0003 0004 #include "EICDataSvc.h" 0005 0006 // Instantiation of a static factory class used by clients to create 0007 // instances of this service 0008 // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 0009 DECLARE_COMPONENT(EICDataSvc) 0010 0011 /// Standard Constructor 0012 EICDataSvc::EICDataSvc(const std::string& name, ISvcLocator* svc) : PodioDataSvc(name, svc) { 0013 declareProperty("inputs", m_filenames = {}, "Names of the files to read"); 0014 declareProperty("input", m_filename = "", "Name of the file to read"); 0015 } 0016 0017 /// Standard Destructor 0018 EICDataSvc::~EICDataSvc() = default;
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |