]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Remove unused parameter in function
authorvulpescu <vulpescu@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 4 Mar 2010 09:08:29 +0000 (09:08 +0000)
committervulpescu <vulpescu@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 4 Mar 2010 09:08:29 +0000 (09:08 +0000)
MUON/AliMUONTriggerIO.cxx
MUON/AliMUONTriggerIO.h

index 86184b0ee52c6c1e6ce4e3dfaaa044ac1fe5eaa7..21f476dbae3bfb82db1e22ff56b2a1fbbae407bf 100644 (file)
@@ -499,7 +499,7 @@ AliMUONTriggerIO::WriteConfig(const char* localFile,
 /// write config files
 
     Bool_t ok;
-    ok  = WriteLocalMasks(localFile, *localMasks, regionalConfig);
+    ok  = WriteLocalMasks(localFile, *localMasks);
     ok &= WriteRegionalConfig(regionalFile, regionalConfig);
     ok &= WriteGlobalConfig(globalFile, globalConfig);
     
@@ -671,7 +671,7 @@ AliMUONTriggerIO::WriteRegionalConfig(const char* regionalFile, AliMUONRegionalT
 
 //_____________________________________________________________________________
 Bool_t 
-AliMUONTriggerIO::WriteLocalMasks(const char* localFile, AliMUONVStore& localMasks, AliMUONRegionalTriggerConfig* regionalConfig) const
+AliMUONTriggerIO::WriteLocalMasks(const char* localFile, AliMUONVStore& localMasks) const
 {
     /// write local mask
     /// removing/adding enable for a local board need a update of the configuration 
index 038de1e6f2559eb92f7e5f89c0ebf5f11717d6d5..9ed5bdf7b052db5b101561dfd18dd2004262b28b 100644 (file)
@@ -73,7 +73,7 @@ public:
 
   Int_t  ReadLocalMasks(const char* localFile, AliMUONVStore& localMasks) const;
   
-  Bool_t WriteLocalMasks(const char* localFile, AliMUONVStore& localMasks, AliMUONRegionalTriggerConfig* regionalConfig) const;
+  Bool_t WriteLocalMasks(const char* localFile, AliMUONVStore& localMasks) const;
 
   void   ReadLocalLUT(AliMUONTriggerLut& lut, Int_t localBoardId, FILE* flut);