Changeset c6f9311 in git for examples/Example7.C
- Timestamp:
- May 26, 2021, 5:05:11 PM (3 years ago)
- Branches:
- master
- Children:
- 56af73f, ae93700
- Parents:
- c1780a5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/Example7.C
rc1780a5 rc6f9311 47 47 48 48 // read lhe event weights 49 if(branchWeight->GetEntries() > 0)49 for(Int_t i = 0; i < branchWeight->GetEntriesFast(); ++i) 50 50 { 51 Weight *weight = (Weight*) branchWeight -> At( 0);51 Weight *weight = (Weight*) branchWeight -> At(i); 52 52 Double_t lhe_weight = weight->Weight; 53 53
Note:
See TracChangeset
for help on using the changeset viewer.