Go to the source code of this file.
Functions | |
void | set_cand_output_bntp (JobCModule &jcm, TString file, bool with) |
void set_cand_output_bntp | ( | JobCModule & | jcm, | |
TString | file, | |||
bool | with | |||
) |
Definition at line 1 of file Cedar_phy/restructure-chris/headers/io/set_cand_output_bntp.h.
References JobCModule::Cmd(), and JobCModule::Set().
Referenced by attach_blinded_output(), attach_output(), attach_output_mc(), attach_output_mc_srfitter(), attach_output_mc_srsafitter(), attach_output_srfitter(), and attach_output_srsafitter().
00002 { 00003 jcm.Cmd("DefineStream Config ConfigRecord"); 00004 00005 if(with){ 00006 jcm.Cmd("DefineStream NtpBDLite NtpBDLiteRecord"); 00007 jcm.Set("Streams=NtpBDLite,Cand,Config,DaqSnarl"); 00008 } 00009 else{ 00010 jcm.Set("Streams=SimSnarl,Cand,Config,DaqSnarl"); 00011 } 00012 00013 jcm.Set("FileName="+file); 00014 }