]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
adding debug messages
authorphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 16 Aug 2008 02:05:24 +0000 (02:05 +0000)
committerphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 16 Aug 2008 02:05:24 +0000 (02:05 +0000)
HLT/PHOS/AliHLTPHOSClusterizer.cxx
HLT/PHOS/AliHLTPHOSFourierComponent.cxx
HLT/PHOS/AliHLTPHOSRawAnalyzerComponent.cxx
HLT/PHOS/AliHLTPHOSRcuHistogramProducerComponent.cxx

index 632daf81395cfdb4199d7272397009cfa3e9ec0a..f2e69edd3d654536d4f31ae9e9c484c0035859b3 100644 (file)
@@ -84,12 +84,24 @@ AliHLTPHOSClusterizer::SetRecPointContainer(AliHLTPHOSRecPointContainerStruct* r
   }
 
 void
-AliHLTPHOSClusterizer::SetRecoParameters(AliPHOSRecoParam* params)
+//AliHLTPHOSClusterizer::SetRecoParameters(AliPHOSRecoParam* params)
+//CRAP PTH
+AliHLTPHOSClusterizer::SetRecoParameters(AliPHOSRecoParam* /*params*/)
 {
+  //<<<<<<< HEAD:AliHLTPHOSClusterizer.cxx
+  //=======
+
+
+
+    //>>>>>>> e76e4d6d226ed1b3b26e0441a108cfe0e0bf0290:AliHLTPHOSClusterizer.cxx
   /*
   //see header file for documentation
 #ifndef HAVE_NOT_PHOSRECOPARAMEMC // set from configure if EMC functionality not available in AliPHOSRecoParam
   // the new AliPHOSRecoParam functions, available from revision
+
+    CRAP PTH
+    temporarily commeneted out by PTH
+    
   fEmcClusteringThreshold = params->GetEMCClusteringThreshold();
   fEmcMinEnergyThreshold = params->GetEMCMinE();
   fLogWeight = params->GetEMCLogWeight();
index 85c0d2083addb76d918f535db846ef0b9b878fa8..d9debe626b2bd7c202846d4fd20e9056fb3a64ef 100644 (file)
@@ -65,6 +65,10 @@ AliHLTPHOSFourierComponent::Spawn()
 void 
 AliHLTPHOSFourierComponent::GetInputDataTypes( vector<AliHLTComponentDataType>& list)
 {
+  list.clear();
+  list.push_back(AliHLTPHOSDefinitions::fgkCellEnergyDataType);
+
+  /*
   const AliHLTComponentDataType* pType=fgkInputDataTypes;
 
   while (pType->fID!=0) 
@@ -72,6 +76,7 @@ AliHLTPHOSFourierComponent::GetInputDataTypes( vector<AliHLTComponentDataType>&
       list.push_back(*pType);
       pType++;
     }
+  */
 }
 
 
@@ -142,6 +147,7 @@ AliHLTPHOSFourierComponent::DoEvent(const AliHLTComponentEventData& evtData,
   for( ndx = 0; ndx < evtData.fBlockCnt; ndx++ )
     {
       iter = blocks+ndx;
+  
       if(iter->fDataType != AliHLTPHOSDefinitions::fgkCellEnergyDataType)
        {
          
@@ -181,7 +187,8 @@ AliHLTPHOSFourierComponent::DoEvent(const AliHLTComponentEventData& evtData,
       bd.fSize = mysize;
       bd.fDataType = AliHLTPHOSDefinitions::fgkFourierTransform;
       // bd.fSpecification = 0xFFFFFFFF;
-      bd.fSpecification = specification;
+      //     bd.fSpecification = specification;
+      bd.fSpecification = 1;
       outputBlocks.push_back( bd );
       
 
index bbcaba99354fe1d58e9ac3599aae3be4f951d5cf..6ad6e4df8edd8f265e43f2c118477bfcd7433bbe 100644 (file)
@@ -1,3 +1,7 @@
+////THIS IS A TEST, PTH
+
+
+
 /**************************************************************************
  * This file is property of and copyright by the Experimental Nuclear     *
  * Physics Group, Dep. of Physics                                         *
@@ -373,7 +377,7 @@ AliHLTPHOSRawAnalyzerComponent::DoEvent( const AliHLTComponentEventData& evtData
          Logging(kHLTLogBenchmark, __FILE__ , IntToChar(  __LINE__ ) , "Analyzing event %lu", fPhosEventCount);
        }  
  
-   }
+    }
 
   return 0;
 }//end DoEvent
index cb6f25b51bbfdc2af2de8c3fdd26096dd63de45f..b5210a55911b1e5042641f0c8bee43015cb8ec5b 100644 (file)
@@ -99,7 +99,10 @@ int  AliHLTPHOSRcuHistogramProducerComponent::DoEvent( const AliHLTComponentEven
                                              AliHLTComponentTriggerData& trigData, AliHLTUInt8_t* outputPtr, 
                                              AliHLTUInt32_t& size, vector<AliHLTComponentBlockData>& outputBlocks )
 {
-  //See html documentation of base class
+  
+  cout <<  "  AliHLTPHOSRcuHistogramProducerComponent::Doevent, entering event loop" << endl;
+
+ //See html documentation of base class
  
   // trigData++;
   // trigData--; //shutting up the compiler, we dont use trigData now but will do in near future
@@ -119,9 +122,13 @@ int  AliHLTPHOSRcuHistogramProducerComponent::DoEvent( const AliHLTComponentEven
 
   for( ndx = 0; ndx < evtData.fBlockCnt; ndx++ )
     {
+      cout <<  "  AliHLTPHOSRcuHistogramProducerComponent::DoEvent, recieved block" << endl;
       iter = blocks+ndx;
       if(iter->fDataType != AliHLTPHOSDefinitions::fgkCellEnergyDataType)
        {
+         cout <<  "  AliHLTPHOSRcuHistogramProducerComponent::DoEvent, recieved block of wrong type" << endl;
+         cout << "evtData.fSize ="  << evtData.fStructSize  <<  "evtData.fBlockCnt =" << evtData.fBlockCnt   <<endl ;
+
          continue;
        }