Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:20

0001 //-------------------------------------------------
0002 //
0003 //   Class: AlignTrackSegments
0004 //
0005 //   AlignTrackSegments
0006 //
0007 //
0008 //   Author :
0009 //   G. Flouris               U Ioannina    Mar. 2015
0010 //   mod.: G Karathanasis
0011 //--------------------------------------------------
0012 
0013 #ifndef L1T_TwinMux_AlignTrackSegments_H
0014 #define L1T_TwinMux_AlignTrackSegments_H
0015 
0016 #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambPhContainer.h"
0017 
0018 class AlignTrackSegments {
0019 public:
0020   AlignTrackSegments(L1MuDTChambPhContainer inphiDigis);
0021   ~AlignTrackSegments(){};
0022 
0023   void run();
0024 
0025   ///Return Output PhContainer
0026   const L1MuDTChambPhContainer& getDTContainer() { return m_dt_tsshifted; }
0027 
0028 private:
0029   ///Output PhContainer
0030   L1MuDTChambPhContainer m_dt_tsshifted;
0031   L1MuDTChambPhContainer m_phiDigis;
0032 };
0033 #endif