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
26
27
|
// -*- C++ -*-
//
// system include files
#include "TEveTrack.h"
#include "Fireworks/ParticleFlow/interface/setTrackTypePF.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
namespace fireworks {
void setTrackTypePF(const reco::PFCandidate& pfCand, TAttLine* track) {
using namespace reco;
// switch (pfCand.particleId() ) {
// case PFCandidate::e: track->SetLineStyle(5); break;
// case PFCandidate::mu: track->SetLineStyle(6); break;
// case PFCandidate::h0: track->SetLineStyle(3); break;
// case PFCandidate::gamma: track->SetLineStyle(7); break;
// default: break;
// }
}
} // namespace fireworks
|