Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Cedar_phy/restructure-chris/headers/io/attach_output_mc.h

Go to the documentation of this file.
00001 #include "set_cand_output_bntp.h"
00002 #include "set_ntpst_output_bntp.h"
00003 #include "../util/get_record_title.h"
00004 
00005 void attach_output_mc(JobC& jc,
00006                       TString attachto,
00007                       TString cand_fname = "CandS.root",
00008                       bool want_cand = true,
00009                       TString release = "")
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     jc.Path.Create("CandOut",
00020                    "Output::Put "
00021                    );
00022     set_cand_output_bntp(jc.Path("CandOut").Mod("Output"), cand_fname, false);
00023     jc.Path.Attach(attachto, "CandOut");
00024   }
00025 
00026   //Ntuple record has its own output file so needs its own output module
00027   jc.Path.Create("NtpSR",
00028                  "NtpStModule::Get "
00029                  "NtpSRModule::Reco "
00030                  "NtpMCModule::Reco " //Necessary to write the MC info tree
00031                  "NtpTHModule::Reco " //Necessary to write the MC th tree
00032                  "Output::Put "
00033                  );
00034 
00035   jc.Path("NtpSR").Mod("NtpMCModule").Set("UseStandard=1"); // use NtpSt
00036   jc.Path("NtpSR").Mod("NtpTHModule").Set("UseStandard=1"); // use NtpSt
00037   jc.Path("NtpSR").Mod("NtpSRModule").Set("UseStandard=1"); // use NtpSt
00038 
00039   jc.Path("NtpSR").Mod("NtpStModule").Set(get_record_title(release));
00040 
00041 
00042   set_ntpst_output_bntp(jc.Path("NtpSR").Mod("Output"), "ntupleStS.root", false);
00043   jc.Path.Attach(attachto,"NtpSR");
00044 }

Generated on Mon Feb 15 11:06:23 2010 for loon by  doxygen 1.3.9.1