00001 #include "atmo_configure_common.h" 00002 00003 void atmo_configure_data(JobCPath& ana) 00004 { 00005 atmo_configure_common(ana, "ntp.data.root"); 00006 00007 // configure DataQualityReader 00008 JobCModule& datqual = ana.Mod("DataQualityReader"); 00009 datqual.Set("FilterOnOff=1"); 00010 datqual.Set("FilterWord=4096"); 00011 datqual.Report(); 00012 00013 // configure LI filter 00014 JobCModule& filterli = ana.Mod("FilterLIModule"); 00015 filterli.Set("LIFinderName=SimplePatternFinder"); 00016 filterli.Report(); 00017 00018 // configure FarDetShieldPlankListModule 00019 JobCModule& shieldplank = ana.Mod("FarDetShieldPlankListModule"); 00020 shieldplank.Set("ListIn=filterdigitlist"); 00021 shieldplank.Set("ListOut=shieldplanklist"); 00022 shieldplank.Report(); 00023 }
1.3.9.1