Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:26

0001 
0002 // Copyright 2020, Jefferson Science Associates, LLC.
0003 // Subject to the terms in the LICENSE file found in the top-level directory.
0004 
0005 #pragma once
0006 #include <JANA/Services/JServiceLocator.h>
0007 #include <JANA/Compatibility/JGeometry.h>
0008 
0009 #include <mutex>
0010 #include <vector>
0011 
0012 class JGeometryManager: public JService {
0013 
0014     std::mutex m_mutex;
0015     std::vector<JGeometry*> geometries;
0016 
0017 public:
0018     JGeometry* GetJGeometry(unsigned int run_number);
0019 
0020 };
0021 
0022