00001 void set_ntpst_output_bntpsa(JobCModule &jcm, TString file, bool with) 00002 { 00003 jcm.Cmd("DefineStream NtpSt NtpStRecord"); 00004 if(with){ 00005 jcm.Cmd("DefineStream NtpBDLite NtpBDLiteRecord"); 00006 jcm.Cmd("DefineStream NtpFitSA NtpFitSARecord"); 00007 jcm.Set("Streams=NtpBDLite,NtpSt,NtpFitSA"); 00008 } 00009 else{ 00010 jcm.Set("Streams=NtpSt,NtpFitSA"); 00011 } 00012 00013 jcm.Set("FileName="+file); 00014 }
1.3.9.1