00001 #ifndef FASTSHOWER_SOFTHADBARCONFIGURER_H 00002 #define FASTSHOWER_SOFTHADBARCONFIGURER_H 00003 // 00005 // 00006 00007 #ifndef FASTSHOWER_ICONFIGURER_H 00008 #include "FastShowerUtils/IConfigurer.h" 00009 #endif 00010 00011 #ifndef FASTSHOWER_CONFIGURERBASE_H 00012 #include "FastShowerUtils/ConfigurerBase.h" 00013 #endif 00014 00015 #ifndef STD_STRING_H 00016 #define STD_STRING_H 00017 #include <string> 00018 #endif 00019 00020 #ifndef FASTSHOWER_SP_H 00021 #include "FastShowerUtils/SP.h" 00022 #endif 00023 00024 #ifndef STD_MAP_H 00025 #define STD_MAP_H 00026 #include <map> 00027 #endif 00028 00029 namespace FastShower{ 00030 00031 class SoftHadBarConfigurer: 00032 virtual public IConfigurer, private ConfigurerBase{ 00033 public: 00034 SoftHadBarConfigurer(Moni); 00035 SoftHadBarConfigurer(NoMoni); 00036 ~SoftHadBarConfigurer(){}; 00037 private: 00038 // ! no copy constructor, copy assignement 00039 SoftHadBarConfigurer operator=(const SoftHadBarConfigurer&); 00040 00041 void addDepositorsE(); 00042 void addDepositorsH(); 00043 00044 void normalisers(); 00045 void initialise(); 00046 }; 00047 00048 }//namespace 00049 #endif 00050 00051 00052 00053 00054 00055