00001 void spill_configure_shower(JobCPath& spill, bool use_sr_list = false) 00002 { 00003 //Set up the conditions for the CandSubShower Package 00004 spill.Mod("SubShowerSRListModule").Set("SubShowerSRListAlgConfig=default"); 00005 JobCModule& shwsrlist = spill.Mod("ShowerSRListModule"); 00006 if(use_sr_list) 00007 shwsrlist.Set("ShowerListAlgorithm=AlgShowerSRList"); 00008 else 00009 shwsrlist.Set("ShowerListAlgorithm=AlgShowerSSList"); 00010 shwsrlist.Set("ShowerListAlgConfig=default"); 00011 shwsrlist.Set("ListOut=CandShowerSRList"); 00012 }
1.3.9.1