00001 #include "set_cand_output_bntp.h"
00002 #include "set_ntpst_output_bntp.h"
00003
00004 void attach_output(JobC& jc,
00005 TString attach_to,
00006 TString cand_fname = "CandS.root",
00007 TString ntpst_name = "ntupleStS.root",
00008 bool want_cand = true,
00009 bool cand_bntp = true,
00010 bool ntpst_bntp = true,
00011 TString path_name = "NtpSR")
00012 {
00014
00015
00016
00018
00019 if(want_cand){
00020
00021 JobCPath& CandOut = jc.Path.Create("CandOut",
00022 "Output::Put "
00023 );
00024 set_cand_output_bntp(CandOut.Mod("Output"), cand_fname, cand_bntp);
00025 jc.Path.Attach(attach_to, "CandOut");
00026 }
00027
00028
00029 JobCPath& path = jc.Path.Create(path_name,
00030 "NtpStModule::Get "
00031 "NtpSRModule::Reco "
00032 "Output::Put "
00033 );
00034 path.Mod("NtpSRModule").Set("UseStandard=1");
00035
00036 set_ntpst_output_bntp(path.Mod("Output"), ntpst_name, ntpst_bntp);
00037
00038 jc.Path.Attach(attach_to, path_name);
00039 }
00040