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

Migration of input collection parameters to untracked for CTPPS and DTMonitorModule #38854

Closed

Commits on Jun 24, 2022

  1. [master]add gen fragment for LLP relval

    Martin committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    9dcb610 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2022

  1. update HTo2LLP genfragment config

    Martin committed Jul 8, 2022
    Configuration menu
    Copy the full SHA
    4114b32 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2022

  1. fix LLP genfragment

    Martin committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    fa7720d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    883c3c3 View commit details
    Browse the repository at this point in the history
  3. Remove commented line

    mandrenguyen committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    c1d3d15 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2022

  1. Configuration menu
    Copy the full SHA
    9340531 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f512ee View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. Configuration menu
    Copy the full SHA
    4803016 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2022

  1. Try to avoid obsolete codes in CondTools/RunInfo

    Code check
    
    Take care of Tamas's comment
    
    Remove the commente dout code
    
    Code check
    
    handle clang error
    
    Code check
    Sunanda committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    3bb89c7 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. Configuration menu
    Copy the full SHA
    948d599 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. Configuration menu
    Copy the full SHA
    d18ad23 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. Add CPPF DQM modules

    bugfix
    
    bugfix
    
    remove commented lines
    
    add L1TStage2CPPF cfi
    
    clear comments
    
    code-checks and format
    
    LogInfo to Warning
    
    remove couts
    
    src to plugins
    
    clang format
    zhangcg123 committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    3399035 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. Test alpaka-based modules and data formats

    General notes:
      - code in the alpaka subdirectories is compiled multiple times, once
        for each backend; this is controlled by the ALPAKA_BACKENDS flag in
        each package or plugins BuildFile.xml;
      - code in .cc files is always compiled by the host compiler;
      - code in .dev.cc files is compiled the respective device compiler:
        nvcc for CUDA, hipcc for HIP, gcc for the serial or tbb backends.
    
    The HeterogeneousCore/AlpakaInterface package provides an interface to
    the header-only alpaka external library.
    It provides a definition of the common types and macros used in CMSSW,
    of the host types, and of the accelertor devices, queues and events for
    each backend.
    It also provides a free function to access the common host object.
    This package can safely be used by DataFormats packages.
    
    The DataFormats/Portable package implements template wrappers for
    persistent host-only collections, transient device-only collections, and
    common interface for both.
    See DataFormats/Portable/README.md for more information.
    
    The DataFormats/PortableTestObjects package implements portable SoA-based
    data formats used for testing the alpaka build rules and the SoA
    templates.
    The HeterogeneousCore/AlpakaTest package implements modules for
    producing, transferring, and analysing those objects.
    See HeterogeneousCore/AlpakaTest/test/ for unit tests for writing and
    reading SoA data structures.
    
    The HeterogeneousCore/AlpakaServices provides simple services for
    checking the availability of devices for each alpaka backend.
    fwyzard committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    d2f2f4a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b8f8f9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0a58127 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    631f867 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e798805 View commit details
    Browse the repository at this point in the history
  6. Implement a ConstBuffer interface for non-mutable buffers

    Implement a ConstBuffer interface for non-mutable buffers, based on
    alpaka::ViewConst<Buffer> .
    
    Remove the LogDebug messages from the constructors and destructors.
    fwyzard committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    8a00ed8 View commit details
    Browse the repository at this point in the history
  7. Make View inherit from ConstView

    This lets the compiler automatically convert a View to a ConstView when
    passed by pointer or by reference, emulating the usual conversion rules
    for mutable/const pointers and references.
    
    Various improvements:
      - fix const correctness in View::Metadata and SoAColumnAccessorsImpl;
      - make SOA_INLINE always inline also on the host;
      - simplify the Matryoshka templates;
      - use the __trap() intrinsic in gpu code;
      - replace typedef with using;
      - add missing type aliases;
      - add defaulted copy/move ctors and dtors;
      - make various methods constexpr;
      - add and update comments, remove unused methods and macros;
      - improve spacing and indentations;
      - apply code formatting.
    fwyzard committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    0d19313 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e03c9bd View commit details
    Browse the repository at this point in the history
  9. Add initialization list style assignment operator to view elements

    This is limited to view trivially deducted from layouts, not the manually defined ones.
    ericcano authored and fwyzard committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    6bbc387 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    956d55b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    51292ce View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1d0e439 View commit details
    Browse the repository at this point in the history
  13. fix wfs

    kskovpen committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    fb68d30 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2022

  1. update

    kskovpen committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    e4bc1e1 View commit details
    Browse the repository at this point in the history
  2. fix cosmics skim wfs

    kskovpen committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    a433d41 View commit details
    Browse the repository at this point in the history
  3. Update the validation scripts for HFNose in Validation/HGCalValidatio…

    …n and macros in SimG4CMS/Calo
    Sunanda committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    7ee6725 View commit details
    Browse the repository at this point in the history
  4. Code check

    Sunanda committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    dec9747 View commit details
    Browse the repository at this point in the history
  5. Correct the sampic record name

    Christopher committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    5028bac View commit details
    Browse the repository at this point in the history
  6. remove wfs

    kskovpen committed Jul 23, 2022
    Configuration menu
    Copy the full SHA
    f3ece2b View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2022

  1. Use the correct ERA for 2026D94 scenario

    Sunanda committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    b38d83d View commit details
    Browse the repository at this point in the history
  2. Add testing of accessing partial wafer coordinates from Digi's and Re…

    …cHit's in view of muon tomography
    Sunanda committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    332ef23 View commit details
    Browse the repository at this point in the history
  3. Code check

    Sunanda committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    4588660 View commit details
    Browse the repository at this point in the history
  4. Take Andrea's suggestions

    Sunanda committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    e0278c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. added BH tagger variable

    jainshilpi committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    58de769 View commit details
    Browse the repository at this point in the history
  2. Update from run2_design to phase1_2022_design.

    Yuan CHAO committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    6248d48 View commit details
    Browse the repository at this point in the history
  3. Modify the muon tomography script which now generates the hit file an…

    …d uses it to create the histograms
    Sunanda committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    31417af View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fb5cf2f View commit details
    Browse the repository at this point in the history
  5. Code check

    Sunanda committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    6f18ae0 View commit details
    Browse the repository at this point in the history
  6. Code check a

    Sunanda committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    e034bfb View commit details
    Browse the repository at this point in the history
  7. Code check b

    Sunanda committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    1bc9549 View commit details
    Browse the repository at this point in the history
  8. Improve the example kernel

    fwyzard committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    866bf1d View commit details
    Browse the repository at this point in the history
  9. Merge pull request cms-sw#38807 from bsunanda/Phase2-hgx319B

    Phase2-hgx319B Add testing of accessing partial wafer coordinates from Digi's and RecHit's in view of muon tomography
    cmsbuild authored Jul 25, 2022
    Configuration menu
    Copy the full SHA
    ca284ed View commit details
    Browse the repository at this point in the history
  10. Implemented optional Dark Bremsstrahlung process into custom physics

    Removed unneccesary include of G4GenericBiasingProcess
    Michael Revering committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    d44f06d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6489059 View commit details
    Browse the repository at this point in the history
  12. include back the rest of wfs

    kskovpen committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    478e889 View commit details
    Browse the repository at this point in the history
  13. fix

    kskovpen committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    03969cf View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ddff1f1 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    31274fd View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Merge pull request cms-sw#38850 from jainshilpi/BHtaggerNano_masterV0

    Adding the relevant variable for BDT based beam halo tagger for photons in nanoAOD
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    d13385b View commit details
    Browse the repository at this point in the history
  2. Merge pull request cms-sw#38783 from yuanchao/cond_sistrip

    Update CondTool/SiStrip scripts to use phase1_2022_realistic GT
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    088f8b1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request cms-sw#38843 from ChrisMisan/correct_sampic_record…

    …_name
    
    Correct the sampic record name
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    a3a819a View commit details
    Browse the repository at this point in the history
  4. add era

    kskovpen committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    42502cd View commit details
    Browse the repository at this point in the history
  5. Merge pull request cms-sw#38329 from revering/DBremSim_12_5_X

    Implementation of Dark Bremsstrahlung Custom Process
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    d274e60 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a7cb997 View commit details
    Browse the repository at this point in the history
  7. update cosmics

    kskovpen committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    d11ee2f View commit details
    Browse the repository at this point in the history
  8. Update APrimePhysics.h

    perrotta authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    b6cd744 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    37ea99a View commit details
    Browse the repository at this point in the history
  10. code format

    VinInn committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    84ea5ec View commit details
    Browse the repository at this point in the history
  11. add unit test

    VinInn committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    2816210 View commit details
    Browse the repository at this point in the history
  12. Merge pull request cms-sw#38862 from cms-sw/FixHeaderGuardAPrimePhysics

    Fix header guard in APrimePhysics.h
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    57fb8a8 View commit details
    Browse the repository at this point in the history
  13. Merge pull request cms-sw#38830 from kskovpen/run3skimrelval

    Add wfs to test Run3 skims
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    580c410 View commit details
    Browse the repository at this point in the history
  14. Merge pull request cms-sw#38855 from fwyzard/alpaka_and_SoA_data_formats

    Integration of alpaka and macro-based SoA in CMSSW
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    df1cbb6 View commit details
    Browse the repository at this point in the history
  15. Merge pull request cms-sw#38711 from mandrenguyen/dontReclusterAAMiniAOD

    Don't recluster jets in HI miniAOD for Run 3
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    61a96f0 View commit details
    Browse the repository at this point in the history
  16. Merge pull request cms-sw#38861 from jbsauvan/fix-sector-rotation

    [HGCAL geometry] Fix definition of 60degree sectors 0 and 1
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    471587e View commit details
    Browse the repository at this point in the history
  17. Merge pull request cms-sw#38496 from kakwok/12_5_X_LLP-genfragment

    Add gen fragment for LLP relval
    cmsbuild authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    d103406 View commit details
    Browse the repository at this point in the history
  18. Modernized modules in L1Trigger/RegionalCaloTrigger

    - switch to thread friendly module types
    - added consumes calls
    Dr15Jones committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    125e9ab View commit details
    Browse the repository at this point in the history
  19. remove run3_GEM modifier

    hyunyong committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    d071d1f View commit details
    Browse the repository at this point in the history
  20. Add printout of ProductID (or BranchID) to edmProvDump

    If not able to find out the ProductID, print out BranchID. The event
    entry number to do the transformation can be customized with a new
    command line argument.
    makortel committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    ae6c00c View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. Delete alcareco.py

    jeongeun authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    0ae735e View commit details
    Browse the repository at this point in the history
  2. fix config for Run3

    VinInn committed Jul 27, 2022
    Configuration menu
    Copy the full SHA
    386cf0d View commit details
    Browse the repository at this point in the history
  3. simple test runs (up to 150cm)

    VinInn committed Jul 27, 2022
    Configuration menu
    Copy the full SHA
    264a5ff View commit details
    Browse the repository at this point in the history
  4. Merge pull request cms-sw#38737 from namapane/MF_issue38669

    Improve caching of MF geometry across runs
    cmsbuild authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    94b2eb1 View commit details
    Browse the repository at this point in the history
  5. Merge pull request cms-sw#38857 from Dr15Jones/externalGeneratorTimes…

    …tamps
    
    Added timestamps to externalGenerator output
    cmsbuild authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    089a546 View commit details
    Browse the repository at this point in the history
  6. Merge pull request cms-sw#38846 from bsunanda/Phase2-hgx318A

    Phase2-hgx318A Use the correct ERA for 2026D94 scenario
    cmsbuild authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    db4ff9a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4147990 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c8c63c9 View commit details
    Browse the repository at this point in the history
  9. Add missing dependencies

    makortel authored Jul 27, 2022
    Configuration menu
    Copy the full SHA
    6975e4d View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2022

  1. Merge pull request cms-sw#38874 from makortel/patch-5

    Add missing dependencies to SimG4Core/CustomPhysics/BuildFile.xml
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    f7c501a View commit details
    Browse the repository at this point in the history
  2. Merge pull request cms-sw#38858 from makortel/edmProvDumpProductID

    Add printout of BranchID (or optionally ProductID) to edmProvDump
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    62d132a View commit details
    Browse the repository at this point in the history
  3. Merge pull request cms-sw#38757 from francescobrivio/fix_conddb

    Fix conddb dump functionality for tags and gts
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    194fba8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request cms-sw#38859 from hyunyong/addGEMToALCARECOMuAlCal…

    …IsolatedMu_CMSSW_12_5_X_2022-07-25-1100_PR
    
    Add GEM recHits and segments to AlCaRecos
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    6a5fde9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request cms-sw#38564 from zhangcg123/cppfdqm_to_master

    Add CPPF DQM modules
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    9fb18d7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d2c7143 View commit details
    Browse the repository at this point in the history
  7. Merge pull request cms-sw#38831 from mmusich/safeCharsForDQMUpload

    throw in `IBooker::bookME` when illegal characters for the DQM GUI upload are encountered
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    fa0034a View commit details
    Browse the repository at this point in the history
  8. Merge pull request cms-sw#38841 from bsunanda/Run3-sim123

    Run3-sim123 Update the validation scripts for HFNose in Validation/HGCalValidation and macros in SimG4CMS/Calo
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    7178892 View commit details
    Browse the repository at this point in the history
  9. Merge pull request cms-sw#38852 from bsunanda/Phase2-hgx319D

    Phase2-hgx319D Modify the muon tomography script which now generates the hit file and uses it to create the histograms
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    9906115 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8bb9eb0 View commit details
    Browse the repository at this point in the history
  11. Merge pull request cms-sw#38865 from Dr15Jones/deprecatedL1TriggerReg…

    …ionalCaloTrigger
    
    Modernized modules in L1Trigger/RegionalCaloTrigger
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    16417bc View commit details
    Browse the repository at this point in the history
  12. Merge pull request cms-sw#38873 from Dr15Jones/deprecatedL1TriggerL1T…

    …Ntuples
    
    Use thread friendly modules in L1Trigger/L1TNtuples
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    b0ff40a View commit details
    Browse the repository at this point in the history
  13. Merge pull request cms-sw#38768 from bsunanda/Run3-gex136G

    Run3-gex136G Try to avoid obsolete codes in CondTools/RunInfo
    cmsbuild authored Jul 28, 2022
    Configuration menu
    Copy the full SHA
    cce0fce View commit details
    Browse the repository at this point in the history
  14. Add missing #include

    makortel committed Jul 28, 2022
    Configuration menu
    Copy the full SHA
    9160f64 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Merge pull request cms-sw#38878 from bsunanda/Phase2-hgx319E

    Phase2-hgx319E Update the test scripts in Geometry/HGCalGeometry/test/python
    cmsbuild authored Jul 29, 2022
    Configuration menu
    Copy the full SHA
    1937c7f View commit details
    Browse the repository at this point in the history
  2. Merge pull request cms-sw#38788 from jeongeun/geo_recovertex

    Replace_Geometry_cff with GeometryDB_cff in RecoVertex
    cmsbuild authored Jul 29, 2022
    Configuration menu
    Copy the full SHA
    230caf5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request cms-sw#38881 from tvami/FixForNanInLocAngle

    Check for nans earlier in the template reco
    cmsbuild authored Jul 29, 2022
    Configuration menu
    Copy the full SHA
    791d9de View commit details
    Browse the repository at this point in the history
  4. Merge pull request cms-sw#38889 from makortel/edmProvDumpFixGcc11

    Add missing #include to EdmProvDump.cc
    cmsbuild authored Jul 29, 2022
    Configuration menu
    Copy the full SHA
    a1ee449 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2022

  1. Merge pull request cms-sw#38864 from VinInn/FixGeomProd

    Try to fix GeometryProducer and G4e examples
    cmsbuild authored Jul 30, 2022
    Configuration menu
    Copy the full SHA
    af61d7b View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2022

  1. Configuration menu
    Copy the full SHA
    0883be0 View commit details
    Browse the repository at this point in the history
  2. Update

    NiharSaha committed Jul 31, 2022
    Configuration menu
    Copy the full SHA
    3eab39d View commit details
    Browse the repository at this point in the history