Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:34

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