Revision: | 1.1 |
Committed: | Fri May 6 14:36:55 2011 UTC (14 years ago) by samvel |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | V00-00-04, V00-00-03, V00-00-02-04, V00-00-02-03, V00-00-02-02, V00-00-02-01, V00-00-02, melo-old, HEAD |
Log Message: | Import Utility |
# | User | Rev | Content |
---|---|---|---|
1 | samvel | 1.1 | /** |
2 | * LeptonInJetDelegate | ||
3 | * s8 | ||
4 | * | ||
5 | * Created by Samvel Khalatian on Nov 16, 2010 | ||
6 | * Copyright 2010, All rights reserved | ||
7 | */ | ||
8 | |||
9 | #ifndef S8_LEPTON_IN_JET_DELEGATE | ||
10 | #define S8_LEPTON_IN_JET_DELEGATE | ||
11 | |||
12 | namespace s8 | ||
13 | { | ||
14 | class Jet; | ||
15 | class Lepton; | ||
16 | |||
17 | class LeptonInJetDelegate | ||
18 | { | ||
19 | public: | ||
20 | virtual ~LeptonInJetDelegate() throw(); | ||
21 | |||
22 | virtual void leptonIsInJet(const Lepton *, | ||
23 | const Jet *); | ||
24 | |||
25 | virtual bool shouldLookForMoreLeptons(); | ||
26 | }; | ||
27 | } | ||
28 | |||
29 | #endif |