Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 10:02:16

0001 #ifndef PRINT_RecoOBJECTS_H
0002 #define PRINT_RecoOBJECTS_H
0003 
0004 #include "DataFormats/TrackReco/interface/Track.h"
0005 #include "DataFormats/TrackReco/interface/TrackFwd.h"
0006 
0007 #include "TrackingTools/PatternTools/interface/Trajectory.h"
0008 #include "TrackingTools/PatternTools/interface/TrajTrackAssociation.h"
0009 #include "DataFormats/SiStripCluster/interface/SiStripCluster.h"
0010 #include "DataFormats/Common/interface/DetSetVector.h"
0011 #include "DataFormats/Common/interface/DetSetVectorNew.h"
0012 
0013 #include <sstream>
0014 
0015 typedef edmNew::DetSet<SiStripCluster>::const_iterator ClusIter;
0016 typedef edmNew::DetSetVector<SiStripCluster> ClusterCollection;
0017 
0018 class TrackerTopology;
0019 
0020 class PrintRecoObjects {
0021 public:
0022   PrintRecoObjects(){};
0023   ~PrintRecoObjects(){};
0024 
0025   void print(std::stringstream& ss, const SiStripCluster& clus);
0026   void print(std::stringstream& ss, const TrajectorySeed& tjS);
0027   void print(std::stringstream& ss, const uint32_t& detid, const TrackerTopology* tTopo) const;
0028   void print(std::stringstream& ss, const reco::Track* track, const math::XYZPoint& vx);
0029   std::string getString(uint32_t detid, const TrackerTopology* tTopo) const;
0030 };
0031 #endif