#include "set_cand_output_bntp.h"#include "set_ntpst_output_bntp.h"Go to the source code of this file.
Functions | |
| void | attach_output_mc (JobC &jc, JobCPath &attach_to, TString cand_fname="CandS.root", bool want_cand=true, TString release="") |
|
||||||||||||||||||||||||
|
Definition at line 4 of file Dogwood/headers/io/attach_output_mc.h. References JobCPath::Attach(), JobCPathModule::Create(), jc, JobCPath::Mod(), JobC::Path, JobCPath::PushBack(), JobCModule::Set(), set_cand_output_bntp(), and set_ntpst_output_bntp(). 00010 {
00012 // Setting the Output Paths //
00013 // - This script produces the 3 output //
00014 // streams, cand, snts, sntp //
00016
00017 if(want_cand){
00018 //Set Candidate Output to CandA.root (all of the snarls included in output)
00019 JobCPath& CandOut = jc.Path.Create("CandOut",
00020 "Output::Put "
00021 );
00022 set_cand_output_bntp(CandOut.Mod("Output"), cand_fname, false);
00023 attach_to.Attach(&CandOut);
00024 }
00025
00026 //Ntuple record has its own output file so needs its own output module
00027 JobCPath& NtpSR = jc.Path.Create("NtpSR");
00028
00029 NtpSR.PushBack("NtpStModule", "Get");
00030 NtpSR.PushBack("NtpSRModule", "Reco");
00031 NtpSR.PushBack("NtpMCModule", "Reco"); //Necessary to write the MC info tree
00032 NtpSR.PushBack("NtpTHModule", "Reco"); //Necessary to write the MC th tree
00033 NtpSR.PushBack("Output", "Put");
00034
00035 NtpSR.Mod("NtpMCModule").Set("UseStandard=1"); // use NtpSt
00036 NtpSR.Mod("NtpTHModule").Set("UseStandard=1"); // use NtpSt
00037 NtpSR.Mod("NtpSRModule").Set("UseStandard=1"); // use NtpSt
00038
00039 set_ntpst_output_bntp(NtpSR.Mod("Output"), "ntupleStS.root", false);
00040
00041 attach_to.Attach(&NtpSR);
00042 }
|
1.3.9.1