1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef DataFormatsL1TCorrelator_TkMuonFwd_h
#define DataFormatsL1TCorrelator_TkMuonFwd_h
// -*- C++ -*-
//
// Package: L1Trigger
// Class : TkMuonFwd
//
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefVector.h"
namespace l1t {
class TkMuon;
typedef std::vector<TkMuon> TkMuonCollection;
typedef edm::Ref<TkMuonCollection> TkMuonRef;
typedef edm::RefVector<TkMuonCollection> TkMuonRefVector;
typedef std::vector<TkMuonRef> TkMuonVectorRef;
} // namespace l1t
#endif
|