00001 #include "TCernOct11Param.h" 00002 00003 TCernOct11Param::TCernOct11Param(const char* name) : 00004 TGo4Parameter(name) 00005 { 00006 UseROCs = kTRUE; // flag indicates usage of ROCs 00007 UseSPADICs = kTRUE; // flag indicates usage of spadics 00008 UseEPICS = kTRUE; // flag indicates usage of EPICS 00009 UseMBS = kTRUE; // flag indicates usage of MBS 00010 00011 UseHodo = kTRUE; // flag indicates usage of hodoscope 00012 UseBeam = kTRUE; // flag indicates usage of beam monitor analysis 00013 UseRICH = kTRUE; // flag indicates usage of RICH 00014 UseBUCHAREST = kTRUE; // flag indicates usage of BUCHAREST 00015 UseMSFFM = kTRUE; // flag indicates usage of MSFFM 00016 UseDUBNA = kTRUE; 00017 } 00018 00019 void TCernOct11Param::EnableOnlyBeamMonitor() 00020 { 00021 UseROCs = kFALSE; // flag indicates usage of ROCs 00022 UseSPADICs = kFALSE; // flag indicates usage of spadics 00023 UseEPICS = kFALSE; // flag indicates usage of EPICS 00024 UseMBS = kTRUE; // flag indicates usage of MBS 00025 00026 UseHodo = kFALSE; // flag indicates usage of hodoscope 00027 UseBeam = kTRUE; // flag indicates usage of beam monitor analysis 00028 UseRICH = kFALSE; // flag indicates usage of RICH 00029 UseBUCHAREST = kFALSE; // flag indicates usage of BUCHAREST 00030 UseMSFFM = kFALSE; // flag indicates usage of MSFFM 00031 UseDUBNA = kFALSE; 00032 00033 }