Go to the source code of this file.
Functions | |
void | set_ntpst_output_bntpsa (JobCModule &jcm, TString file, bool with) |
void set_ntpst_output_bntpsa | ( | JobCModule & | jcm, | |
TString | file, | |||
bool | with | |||
) |
Definition at line 1 of file Elm/headers/io/set_ntpst_output_bntpsa.h.
References JobCModule::Cmd(), and JobCModule::Set().
00002 { 00003 jcm.Cmd("DefineStream NtpSt NtpStRecord"); 00004 jcm.Cmd("DefineStream NtpFitSA NtpFitSARecord"); 00005 if(with){ 00006 jcm.Cmd("DefineStream NtpBDLite NtpBDLiteRecord"); 00007 jcm.Set("Streams=NtpBDLite,NtpSt,NtpFitSA"); 00008 } 00009 else{ 00010 jcm.Set("Streams=NtpSt,NtpFitSA"); 00011 } 00012 00013 jcm.Set("FileName="+file); 00014 }