1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef Fireworks_ParticleFlow_setTrackTypePF_h
#define Fireworks_ParticleFlow_setTrackTypePF_h
// -*- C++ -*-
//
// system include files
#include "Rtypes.h"
#include "TAttLine.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
// user include files
// forward declarations
namespace reco {
class PFCandidate;
}
class TEveTrack;
namespace fireworks {
void setTrackTypePF(const reco::PFCandidate& pfCand, TAttLine* track);
}
#endif
|