]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
added protection against missing 4 vector area
authorkleinb <kleinb@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Jan 2011 16:51:11 +0000 (16:51 +0000)
committerkleinb <kleinb@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Jan 2011 16:51:11 +0000 (16:51 +0000)
JETAN/AliAnalysisTaskJetBackgroundSubtract.cxx

index ed0868d39602504898b4894270d76e700eeb96eb..b4b32bb7d33dde1c7168029e0c28ef7e99bfa027 100644 (file)
@@ -453,22 +453,23 @@ void AliAnalysisTaskJetBackgroundSubtract::UserExec(Option_t */*option*/)
 
        }//kRhoRC
 
-        else if(fSubtraction==k4Area){
-         
-                 backgroundv.SetPxPyPzE(rho*(jet->VectorAreaCharged())->Px(),rho*(jet->VectorAreaCharged())->Py(),rho*(jet->VectorAreaCharged())->Pz(),rho*(jet->VectorAreaCharged())->E());
-        if((backgroundv.E()>jet->E())&&(backgroundv.Pt()>jet->Pt())){
-       
-         // optionally rescale it and keep??
-         bAdd = RescaleJetMomentum(&tmpNewJet,0.1);
-         if(h2PtInOut)h2PtInOut->Fill(jet->Pt(),0.1);
-       }
-       else{
-         bAdd = RescaleJet4vector(&tmpNewJet,backgroundv);
-       }
-       // add background estimates to the new jet object
-       // allows to recover old p_T and rho...
-       tmpNewJet.SetBgEnergy(backgroundv.P(),0);
+       else if(fSubtraction==k4Area&&jet->VectorAreaCharged()){
 
+        
+        backgroundv.SetPxPyPzE(rho*(jet->VectorAreaCharged())->Px(),rho*(jet->VectorAreaCharged())->Py(),rho*(jet->VectorAreaCharged())->Pz(),rho*(jet->VectorAreaCharged())->E());
+        if((backgroundv.E()>jet->E())&&(backgroundv.Pt()>jet->Pt())){
+       
+          // optionally rescale it and keep??
+          bAdd = RescaleJetMomentum(&tmpNewJet,0.1);
+          if(h2PtInOut)h2PtInOut->Fill(jet->Pt(),0.1);
+        }
+        else{
+          bAdd = RescaleJet4vector(&tmpNewJet,backgroundv);
+        }
+        // add background estimates to the new jet object
+        // allows to recover old p_T and rho...
+        tmpNewJet.SetBgEnergy(backgroundv.P(),0);
+        
        }//kArea4vector