Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:27

0001 //
0002 // Class: CSCTFDTReceiver
0003 // Use: Takes a set of DT track stubs and converts them into
0004 //      CSC Track Stubs. Emulates all of the DT receiver cards in a TF crate.
0005 // Author: Lindsey Gray (partial port from ORCA)
0006 //
0007 
0008 #include <DataFormats/L1DTTrackFinder/interface/L1MuDTChambPhContainer.h>
0009 #include <DataFormats/L1CSCTrackFinder/interface/CSCTriggerContainer.h>
0010 #include <DataFormats/L1CSCTrackFinder/interface/TrackStub.h>
0011 
0012 class CSCTFDTReceiver {
0013 public:
0014   CSCTFDTReceiver() { dtstubs.clear(); }
0015   ~CSCTFDTReceiver() {}
0016 
0017   // Takes input DT Sector Collector stubs and translates them into CSC coordinates.
0018   CSCTriggerContainer<csctf::TrackStub> process(const L1MuDTChambPhContainer*);
0019 
0020 private:
0021   CSCTriggerContainer<csctf::TrackStub> dtstubs;
0022 };