24 |
|
{ |
25 |
|
// Process entries of the tree. |
26 |
|
|
27 |
< |
const JetCol *inJets = GetObjThisEvt<JetCol>(fJetsName); |
27 |
> |
const JetCol *inJets = GetObjThisEvt<JetCol>(fJetsName); |
28 |
> |
if (!inJets) { |
29 |
> |
SendError(kAbortModule, "Process", |
30 |
> |
"Pointer to input jet collection %s is null.", |
31 |
> |
fJetsName.Data()); |
32 |
> |
return; |
33 |
> |
} |
34 |
|
|
35 |
|
JetOArr *GoodJets = new JetOArr; |
36 |
|
GoodJets->SetName(fGoodJetsName); |
62 |
|
AddObjThisEvt(GoodJets); |
63 |
|
} |
64 |
|
|
59 |
– |
//-------------------------------------------------------------------------------------------------- |
60 |
– |
void JetIDMod::SlaveBegin() |
61 |
– |
{ |
62 |
– |
// Run startup code on the computer (slave) doing the actual analysis. |
63 |
– |
|
64 |
– |
} |