blob: e26405f0ae707e58a37de0c19c4310aced5fcb01 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2019 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.tracecompass.incubator.internal.ros.core.trace;
import java.util.Collections;
import java.util.Set;
import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
import org.eclipse.tracecompass.tmf.core.trace.experiment.TmfExperiment;
/**
* Class for ROS experiments, which combine UST ({@link RosTrace}) and kernel
* traces
*
* @author Christophe Bedard
*/
public class RosExperiment extends TmfExperiment {
/**
* Default constructor. Needed by the extension point.
*/
public RosExperiment() {
this("", Collections.EMPTY_SET); //$NON-NLS-1$
}
/**
* Constructor with traces and id
*
* @param id
* The ID of this experiment
* @param traces
* The set of traces that are part of this experiment
*/
public RosExperiment(String id, Set<ITmfTrace> traces) {
super(ITmfEvent.class, id, traces.toArray(new ITmfTrace[traces.size()]), TmfExperiment.DEFAULT_INDEX_PAGE_SIZE, null);
}
}