Fork me on GitHub

Changes between Version 19 and Version 20 of WorkBook/TutorialBologna


Ignore:
Timestamp:
Jun 10, 2016, 12:57:40 PM (8 years ago)
Author:
Michele Selvaggi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/TutorialBologna

    v19 v20  
    4014015) Let's store this information in Tracks. Find this classes in classes/DelphesClasses.h and add the new variables. Compile.
    402402
    403 6)  Now we have to tell Delphes that we want these variables to appear in our final root tree. Store these variables in the Track objects by editing the !ProcessTracks method in modules/!TreeWriter.cc. Compile.
     4036)  Now we have to tell Delphes that we want these variables to appear in our final root tree.
     404{{{
     405entry->T0 = (candidate -> T0)*1.0E-3/c_light;
     406entry->TF = (candidate -> TF)*1.0E-3/c_light;
     407entry->genT0 = (candidate -> genT0)*1.0E-3/c_light;
     408entry->genTF = (candidate -> genTF)*1.0E-3/c_light;
     409entry->ErrorT = (candidate -> ErrorT)*1.0E-3/c_light;
     410}}}
     411Store these variables in the Track objects by editing the !ProcessTracks method in modules/!TreeWriter.cc. Compile.
    404412
    4054137)  Finally, call the Timing module in the delphes_card_CMS_PileUp in the detector and configure it.