Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:13:36

0001 // -*- C++ -*-
0002 //
0003 // This file is part of YODA -- Yet more Objects for Data Analysis
0004 // Copyright (C) 2008-2024 The YODA collaboration (see AUTHORS for details)
0005 //
0006 #include <string>
0007 #include <vector>
0008 
0009 namespace YODA {
0010 
0011 
0012   /// Get the path to the directory containing libYODA
0013   std::string getLibPath();
0014 
0015   /// Get the path to the installed share/YODA/ data directory
0016   std::string getDataPath();
0017 
0018   /// YODA data paths
0019   std::vector<std::string> getYodaDataPath();
0020 
0021 
0022 }