]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
adding missing argument in printf statement
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 21 Jul 2010 07:36:59 +0000 (07:36 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 21 Jul 2010 07:36:59 +0000 (07:36 +0000)
HLT/trigger/AliHLTTriggerGammaConversion.cxx
HLT/trigger/AliHLTTriggerGammaConversion.h

index 072b5c24e9b554363f2a8570a6ce5a3c74e5614d..a9e9d9cda3de546cc6924fb561117d364b5eb14d 100644 (file)
@@ -1,4 +1,4 @@
-
+// $Id$
 //**************************************************************************
 //* This file is property of and copyright by the ALICE HLT Project        * 
 //* ALICE Experiment at CERN, All rights reserved.                         *
@@ -148,7 +148,7 @@ int AliHLTTriggerGammaConversion::DoTrigger()
     ptcut.Form(" pt >= %.02f GeV/c ,", fPtMin);
   }
   maxDca.Form(" dca <= %.04fcm ,",fMaxDca);
-  maxR.Form(" r <= %.02cm");
+  maxR.Form(" r <= %.02cm", fMaxR);
   
   if(fNReconstructedGammas>0){
     description.Form("Event contains %d gamma conversions,", fNReconstructedGammas);
index 4cbd5dfabd785560f6dc527740776beb1d5986db..2f51dd3e33b403362dfa7532a780a67941df5cdc 100644 (file)
@@ -1,4 +1,5 @@
 //-*- Mode: C++ -*-
+// $Id$
 
 #ifndef ALIHLTTRIGGERGAMMACONVERSION_H
 #define ALIHLTTRIGGERGAMMACONVERSION_H