1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef DataFormats_L1TParticleFlow_HPSPFTauFwd_H
#define DataFormats_L1TParticleFlow_HPSPFTauFwd_H
#include "DataFormats/L1TParticleFlow/interface/HPSPFTau.h"
namespace l1t {
typedef std::vector<HPSPFTau> HPSPFTauCollection;
typedef edm::Ref<HPSPFTauCollection> HPSPFTauRef;
typedef edm::RefVector<HPSPFTauCollection> HPSPFTauRefVector;
typedef std::vector<HPSPFTauRef> HPSPFTauVectorRef;
} // namespace l1t
#endif
|