]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Exchange information only through a data member
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 19 May 2008 16:04:47 +0000 (16:04 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 19 May 2008 16:04:47 +0000 (16:04 +0000)
STEER/AliGRPPreprocessor.cxx
STEER/AliGRPPreprocessor.h

index e392ee214d704e8633ebb088d856bd6950df737a..721d41998f13b99c08c344d8ed1705aa999dd5d1 100644 (file)
@@ -617,7 +617,7 @@ Int_t AliGRPPreprocessor::ProcessDcsDPs(TMap* valueMap, TMap* mapDCS)
 
    // NEEDS TO BE REVISED, CONFIRMED
    AliInfo(Form("==========GenevaPressureMaps==========="));
-   AliDCSSensorArray *dcsSensorArray = GetPressureMap(valueMap,fPressure);
+   AliDCSSensorArray *dcsSensorArray = GetPressureMap(valueMap);
    if( fPressure->NumFits()==0 ) {
      Log("Problem with the pressure sensor values!!!");
    } else {
@@ -645,7 +645,7 @@ Int_t AliGRPPreprocessor::ProcessDcsDPs(TMap* valueMap, TMap* mapDCS)
 }
 
 //_______________________________________________________________
-AliDCSSensorArray *AliGRPPreprocessor::GetPressureMap(TMap* dcsAliasMap, AliDCSSensorArray *fPressure)
+AliDCSSensorArray *AliGRPPreprocessor::GetPressureMap(TMap* dcsAliasMap)
 {
   // extract DCS pressure maps. Perform fits to save space
   
index 59d3246ad5d46434c462eb19c26858623669e837..389749e38cda4005a57a59c2cd8c59b7818ad7dc 100644 (file)
@@ -52,7 +52,7 @@ class AliGRPPreprocessor: public AliPreprocessor {
               UInt_t   ProcessDaqFxs();
               UInt_t   ProcessDcsFxs();
                Int_t   ProcessDcsDPs(TMap* valueSet, TMap* grpmap);
-   AliDCSSensorArray*  GetPressureMap(TMap *dcsAliasMap, AliDCSSensorArray *fPressure);
+   AliDCSSensorArray*  GetPressureMap(TMap *dcsAliasMap);
   
  private: