Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:11

0001 {
0002   //Need this to allow ROOT to be able to use a ThingsTSelector
0003   gSystem->Load("libFWCoreFWLite");
0004   FWLiteEnabler::enable();
0005   gSystem->Load("libFWCoreTFWLiteSelectorTest");
0006 
0007   TSelector* sel = new tfwliteselectortest::ThingsTSelector();
0008   
0009   //This holds the list of files and 'TTree' to process
0010   TChain c("Events");
0011   c.Add("testTFWLiteSelector.root");
0012 
0013   //This actually processes the data
0014   c.Process(sel);
0015 }