Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:35

0001 #ifndef TrackAssociator_DetIdInfo_h
0002 #define TrackAssociator_DetIdInfo_h
0003 
0004 /**

0005  * 

0006  *  Description:

0007  *    Helper class to get human readable informationa about given DetId

0008  * 

0009  */
0010 
0011 #include "DataFormats/DetId/interface/DetId.h"
0012 #include <set>
0013 #include <vector>
0014 
0015 class TrackerTopology;
0016 
0017 class DetIdInfo {
0018 public:
0019   static std::string info(const DetId &, const TrackerTopology *tTopo);
0020   static std::string info(const std::set<DetId> &, const TrackerTopology *tTopo);
0021   static std::string info(const std::vector<DetId> &, const TrackerTopology *tTopo);
0022 };
0023 #endif