Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing memory leak in L1 CSCTrackFinder #9888

Merged
merged 1 commit into from
Jun 26, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions L1Trigger/CSCTrackFinder/src/CSCTFPtLUT.cc
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,17 @@ CSCTFPtLUT::CSCTFPtLUT(const edm::EventSetup& es)
//std::cout << "pt_method from 4 " << std::endl;
lowQualityFlag = 4;
isBeamStartConf = true;
pt_lut = new ptdat[1<<21];

edm::ESHandle<L1MuCSCPtLut> ptLUT;
es.get<L1MuCSCPtLutRcd>().get(ptLUT);
const L1MuCSCPtLut *myConfigPt_ = ptLUT.product();

memcpy((void*)pt_lut,(void*)myConfigPt_->lut(),(1<<21)*sizeof(ptdat));

lut_read_in = true;

if ( !lut_read_in) {
pt_lut = new ptdat[1<<21];

edm::ESHandle<L1MuCSCPtLut> ptLUT;
es.get<L1MuCSCPtLutRcd>().get(ptLUT);
const L1MuCSCPtLut *myConfigPt_ = ptLUT.product();

memcpy((void*)pt_lut,(void*)myConfigPt_->lut(),(1<<21)*sizeof(ptdat));

lut_read_in = true;
}
edm::ESHandle< L1MuTriggerScales > scales ;
es.get< L1MuTriggerScalesRcd >().get( scales ) ;
trigger_scale = scales.product() ;
Expand Down