Go to the source code of this file.
Functions | |
| void | SetCandOutputWithBNtp (JobCModule &jcm, TString file) |
| void | SetCandOutputNoBNtp (JobCModule &jcm, TString file) |
| void | SetNtpStOutputWithBNtp (JobCModule &jcm, TString file) |
| void | SetNtpStOutputNoBNtp (JobCModule &jcm, TString file) |
|
||||||||||||
|
Definition at line 9 of file setoutput.h. References JobCModule::Cmd(), and JobCModule::Set(). 00009 {
00010
00011 jcm.Cmd("DefineStream Config ConfigRecord");
00012 jcm.Set("Streams=SimSnarl,Cand,Config,DaqSnarl");
00013 jcm.Set("FileName="+file);
00014 }
|
|
||||||||||||
|
Definition at line 1 of file setoutput.h. References JobCModule::Cmd(), and JobCModule::Set(). 00001 {
00002
00003 jcm.Cmd("DefineStream Config ConfigRecord");
00004 jcm.Cmd("DefineStream NtpBDLite NtpBDLiteRecord");
00005 jcm.Set("Streams=NtpBDLite,Cand,Config,DaqSnarl");
00006 jcm.Set("FileName="+file);
00007 }
|
|
||||||||||||
|
Definition at line 23 of file setoutput.h. References JobCModule::Cmd(), and JobCModule::Set(). 00023 {
00024 jcm.Cmd("DefineStream NtpSt NtpStRecord");
00025 jcm.Set("Streams=NtpSt");
00026 jcm.Set("FileName="+file);
00027 }
|
|
||||||||||||
|
Definition at line 16 of file setoutput.h. References JobCModule::Cmd(), and JobCModule::Set(). 00016 {
00017 jcm.Cmd("DefineStream NtpSt NtpStRecord");
00018 jcm.Cmd("DefineStream NtpBDLite NtpBDLiteRecord");
00019 jcm.Set("Streams=NtpBDLite,NtpSt");
00020 jcm.Set("FileName="+file);
00021 }
|
1.3.9.1