ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/Configuration/python/histogramDefinitions.py
(Generate patch)

Comparing UserCode/OSUT3Analysis/Configuration/python/histogramDefinitions.py (file contents):
Revision 1.12 by lantonel, Mon Mar 4 22:43:59 2013 UTC vs.
Revision 1.13 by jbrinson, Tue Mar 5 10:27:32 2013 UTC

# Line 564 | Line 564 | MetHistograms = cms.PSet(
564      histograms = cms.VPSet (
565          cms.PSet (
566              name = cms.string("met"),
567 <            title = cms.string("Missing E_{T}; Missing E_{T} [GeV]"),
567 >            title = cms.string("Missing E_[T]; Missing E_{T} [GeV]"),
568 >
569              bins = cms.vdouble(500, 0, 500),
570              inputVariables = cms.vstring("pt"),
571          ),
572      )
573   )
574 +
575 + JetHistograms = cms.PSet(
576 +    inputCollection = cms.string("jets"),
577 +    histograms = cms.VPSet (
578 +        cms.PSet (
579 +            name = cms.string("jetPt"),
580 +            title = cms.string("Jet pT; Jet pT [GeV]"),
581 +            bins = cms.vdouble(500, 0, 500),
582 +            inputVariables = cms.vstring("pt"),
583 +        ),
584 +    )
585 + )
586 +
587 + TrackHistograms = cms.PSet(
588 +     inputCollection = cms.string("tracks"),
589 +     histograms = cms.VPSet (
590 +        cms.PSet (
591 +            name = cms.string("trackPt"),
592 +            title = cms.string("Track Transverse Momentum; p_{T} [GeV]"),
593 +            bins = cms.vdouble(100, 0, 500),
594 +            inputVariables = cms.vstring("pt"),
595 +                   ),
596 +         cms.PSet (
597 +             name = cms.string("trackEta"),
598 +             title = cms.string("Track Eta; #eta"),
599 +             bins = cms.vdouble(100, -5, 5),
600 +             inputVariables = cms.vstring("eta"),
601 +                        ),
602 +
603 +        cms.PSet (
604 +             name = cms.string("trackPhi"),
605 +             title = cms.string("Track Phi; #phi"),
606 +             bins = cms.vdouble(100, -5, 5),
607 +             inputVariables = cms.vstring("phi"),
608 +                        ),
609 +        cms.PSet (
610 +            name = cms.string("trackd0"),
611 +            title = cms.string("Track d0; d_0"),
612 +            bins = cms.vdouble(100, -0.5, 0.5),
613 +            inputVariables = cms.vstring("d0"),
614 +         ),
615 +
616 +        cms.PSet (
617 +            name = cms.string("trackdz"),
618 +            title = cms.string("Track dz; d_z"),
619 +            bins = cms.vdouble(100, -30, 30),
620 +            inputVariables = cms.vstring("dZ"),
621 +         ),
622 +       cms.PSet (
623 +            name = cms.string("trackNumValidHits"),
624 +            title = cms.string("Track Number of Valid Hits; Number of Valid Hits"),
625 +            bins = cms.vdouble(100, 0, 30),
626 +            inputVariables = cms.vstring("numValidHits"),
627 +            ),
628 +
629 +             cms.PSet (
630 +            name = cms.string("trackChi2"),
631 +            title = cms.string("Track Reduced Chi2; #chi^2/DOF"),
632 +            bins = cms.vdouble(100, 0, 30),
633 +            inputVariables = cms.vstring("normChi2"),
634 +            ),
635 +        
636 +        
637 +    )
638 +  )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines